Skip to content

Commit

Permalink
Move test driver code to legate.core (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryevdv authored Oct 10, 2022
1 parent e060145 commit 52bb4f5
Show file tree
Hide file tree
Showing 38 changed files with 4 additions and 3,559 deletions.
8 changes: 4 additions & 4 deletions test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@

import sys

from tests._utils.config import Config
from tests._utils.system import System
from tests._utils.test_plan import TestPlan
from legate.tester.config import Config
from legate.tester.test_plan import TestPlan
from legate.tester.test_system import TestSystem

if __name__ == "__main__":
config = Config(sys.argv)

system = System(dry_run=config.dry_run)
system = TestSystem(dry_run=config.dry_run)

plan = TestPlan(config, system)

Expand Down
74 changes: 0 additions & 74 deletions tests/_utils/__init__.py

This file was deleted.

286 changes: 0 additions & 286 deletions tests/_utils/args.py

This file was deleted.

Loading

0 comments on commit 52bb4f5

Please sign in to comment.