remove old setup routine in runner
This commit is contained in:
parent
772bc1b94a
commit
3b7c56a5b3
3 changed files with 0 additions and 13 deletions
|
|
@ -13,9 +13,6 @@ class TestRunner(Protocol):
|
|||
def __init__(self, dotenv_path: Path, output_dir: Path, session_id: str):
|
||||
...
|
||||
|
||||
def run_setup(self):
|
||||
...
|
||||
|
||||
def run_tests(self):
|
||||
...
|
||||
|
||||
|
|
@ -40,8 +37,6 @@ class Wrapper:
|
|||
|
||||
def run_test(self):
|
||||
self.runners: list[TestRunner] = self._load_runners(self.env_files)
|
||||
for runner in self.runners:
|
||||
runner.run_setup()
|
||||
for runner in self.runners:
|
||||
runner.run_tests()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue