From ebac7f49fdbdd5d4890d3adf3ca0047b51d3f056 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 10 Dec 2023 18:00:44 +0100 Subject: [PATCH] add todos --- pytest_abra/coordinator.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pytest_abra/coordinator.py b/pytest_abra/coordinator.py index 52f5e77..c302c76 100644 --- a/pytest_abra/coordinator.py +++ b/pytest_abra/coordinator.py @@ -32,11 +32,16 @@ class Coordinator: self.ENV = EnvManager(env_paths=env_paths, RUNNER_DICT=self.RUNNER_DICT) self.TIMEOUT = timeout + # todo: prepare tests def setup_test(self) -> None: logger.info("calling setup_test()") self.DIR.create_all_dirs() self.ENV.copy_env_files(self.DIR) + # todo: check that tests are unique + # todo: run setups + # todo: run tests + # todo: run cleanups def run_test(self) -> None: logger.info("calling run_test()") self.runners: list[Runner] = self._load_runners(self.ENV.env_files)