From 5bab8c936851ff1dde489d52bec3a92aa471837a Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 28 Oct 2024 08:30:45 +0100 Subject: [PATCH] More timeout on docker start ? --- integration-tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/conftest.py b/integration-tests/conftest.py index 356fa5e3..7c082cae 100644 --- a/integration-tests/conftest.py +++ b/integration-tests/conftest.py @@ -557,7 +557,7 @@ def launcher(event_loop): devices=devices, volumes=volumes, ports={"80/tcp": port}, - healthcheck={"timeout": int(10 * 1e9)}, + healthcheck={"timeout": int(60 * 1e9), "retries": 2}, # 60s shm_size="1G", )