From a669f34fcc454ea29d8a520377c1f1d26becfa2c Mon Sep 17 00:00:00 2001 From: Ivan Nikolaev-Axenov Date: Thu, 20 Mar 2025 18:16:04 +0300 Subject: [PATCH] fix v1 --- 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 c4e9e82ae..3676b38ba 100644 --- a/clr_test/run_test_docker_containers.py +++ b/clr_test/run_test_docker_containers.py @@ -25,6 +25,9 @@ def run_docker(folder_name: str) -> int: logging.info("Removing all clr_test-clearing_system containers") subprocess.call('docker rm -f $(docker ps --all -q --filter ancestor=clr_test-clearing_system)', shell=True) + logging.info("Removing all sftp containers") + subprocess.call('docker rm -f $(docker ps --all -q --filter ancestor=mirror.gcr.io/atmoz/sftp)', shell=True) + logging.info("Removing all clr_test-db images") subprocess.call('docker rmi -f clr_test-db', shell=True)