From 2db8f6004acee642783072161ac063715299eaf8 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Wed, 9 Oct 2024 18:11:53 +0200 Subject: [PATCH] Apparently container can be gone already. --- integration-tests/conftest.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/integration-tests/conftest.py b/integration-tests/conftest.py index dbe69244..f24fc079 100644 --- a/integration-tests/conftest.py +++ b/integration-tests/conftest.py @@ -572,7 +572,10 @@ def launcher(event_loop): print(container_output, file=sys.stderr) finally: - container.remove() + try: + container.remove() + except Exception: + pass if DOCKER_IMAGE is not None: return docker_launcher