From 714ef6c9f60c209666f47a79d71198d80a117c3b Mon Sep 17 00:00:00 2001 From: Ivan Nikolaev-Axenov Date: Fri, 30 May 2025 13:04:54 +0300 Subject: [PATCH] debug fix v5 --- clr_test/run_test_docker_containers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clr_test/run_test_docker_containers.py b/clr_test/run_test_docker_containers.py index e0611b80b..80e939e4e 100644 --- a/clr_test/run_test_docker_containers.py +++ b/clr_test/run_test_docker_containers.py @@ -39,6 +39,9 @@ def run_docker(folder_name: str) -> int: logging.info("Removing all clr_test-db images") subprocess.call('docker rmi -f clr_test-db', shell=True) + logging.info("Removing all clr_test-db-updater images") + subprocess.call('docker rmi -f clr_test-db-updater', shell=True) + logging.info("Removing all clr_test-clearing_system images") subprocess.call('docker rmi -f clr_test-clearing_system', shell=True)