From 8dd2006cd84780e982be3675cb185e28d821b3b9 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Wed, 2 Oct 2024 16:29:42 +0200 Subject: [PATCH] Sleep ? --- integration-tests/conftest.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/integration-tests/conftest.py b/integration-tests/conftest.py index 93ff9e40..b136cbdb 100644 --- a/integration-tests/conftest.py +++ b/integration-tests/conftest.py @@ -517,6 +517,8 @@ def launcher(event_loop): docker.types.DeviceRequest(count=gpu_count, capabilities=[["gpu"]]) ] + print("Starting docker") + container = client.containers.run( DOCKER_IMAGE, command=args, @@ -532,6 +534,10 @@ def launcher(event_loop): shm_size="1G", ) + import time + + time.sleep(600) + yield ContainerLauncherHandle(client, container.name, port) if not use_flash_attention: