From f3e2f8de927b0809b557bb096e0cb7eac317b693 Mon Sep 17 00:00:00 2001 From: Ivan Nikolaev-Axenov Date: Fri, 30 May 2025 17:19:40 +0300 Subject: [PATCH] debug fix v16 --- clr_test/run_test_docker_containers.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/clr_test/run_test_docker_containers.py b/clr_test/run_test_docker_containers.py index 80e939e4e..cde709ce7 100644 --- a/clr_test/run_test_docker_containers.py +++ b/clr_test/run_test_docker_containers.py @@ -117,8 +117,10 @@ def combine_ddl_updates_into_file(): logging.info(f"Combining DDLs...") pattern = re.compile(r'updateDDL_(\d+)\.(\d+)\.sql$') + logging.info(f"Currently found files = {os.listdir(f'{CLR_TEST_DIR}/clearing-all/db')}") + files = [] - for filepath in glob(f"{CLR_TEST_DIR}/db/updateDDL_*.sql"): + for filepath in glob(f"{CLR_TEST_DIR}/clearing-all/db/updateDDL_*.sql"): filename = os.path.basename(filepath) match = pattern.search(filename) if match: @@ -127,6 +129,7 @@ def combine_ddl_updates_into_file(): files.append(((major, minor), filepath)) files.sort(key=lambda x: x[0]) + logging.info(f"Found files: {files}") with open(f"{CLR_TEST_DIR}/db-updater/combined_update_ddl.sql", 'w', encoding='utf-8') as outfile: for version, filepath in files: