add file change check to copy_env_files, add test cases for copy_env_files

This commit is contained in:
Daniel 2023-12-14 11:38:55 +01:00
parent 5102cf2d91
commit 8e926d4e64
3 changed files with 159 additions and 6 deletions

View file

@ -38,7 +38,7 @@ class Coordinator:
def prepare_tests(self) -> None:
logger.info("calling prepare_tests()")
self.DIR.create_all_dirs()
self.ENV.copy_env_files(self.DIR)
self.ENV.copy_env_files(self.ENV.env_files, self.DIR)
self.load_test_credentials(self.DIR)
def run_tests(self) -> None: