add todos

This commit is contained in:
Daniel 2023-12-10 18:00:44 +01:00
parent 3ffa2f8ecd
commit ebac7f49fd

View file

@ -32,11 +32,16 @@ class Coordinator:
self.ENV = EnvManager(env_paths=env_paths, RUNNER_DICT=self.RUNNER_DICT) self.ENV = EnvManager(env_paths=env_paths, RUNNER_DICT=self.RUNNER_DICT)
self.TIMEOUT = timeout self.TIMEOUT = timeout
# todo: prepare tests
def setup_test(self) -> None: def setup_test(self) -> None:
logger.info("calling setup_test()") logger.info("calling setup_test()")
self.DIR.create_all_dirs() self.DIR.create_all_dirs()
self.ENV.copy_env_files(self.DIR) 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: def run_test(self) -> None:
logger.info("calling run_test()") logger.info("calling run_test()")
self.runners: list[Runner] = self._load_runners(self.ENV.env_files) self.runners: list[Runner] = self._load_runners(self.ENV.env_files)