run_test_docker_containers.py logging added
This commit is contained in:
parent
14e4633ee7
commit
c7b43312e2
1 changed files with 3 additions and 0 deletions
|
|
@ -155,8 +155,11 @@ def main() -> None:
|
|||
folders = [i for i in sorted(os.listdir(DATA_ROOT_DIR)) if re.search("\\d{1,}.\\d{1,}.*", i)]
|
||||
|
||||
if os.getenv("TEST_CASES") is not None:
|
||||
logging.info(f"Current TEST_CASES: {os.getenv("TEST_CASES")}")
|
||||
selected_test_cases = os.getenv("TEST_CASES").split(";")
|
||||
folders = list(filter(lambda f: f in selected_test_cases, folders))
|
||||
else:
|
||||
logging.info("TEST_CASES is None, running all test cases")
|
||||
|
||||
remove_if_exists("clr_test/results.txt")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue