From 110b9a0b4c868b738a3304abe716899febc4a6d6 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Tue, 17 Sep 2024 12:13:51 +0200 Subject: [PATCH] Longer timeout --- 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 c1c992ab..09522395 100644 --- a/integration-tests/conftest.py +++ b/integration-tests/conftest.py @@ -269,7 +269,7 @@ class LauncherHandle: def _inner_health(self): raise NotImplementedError - async def health(self, timeout: int = 60): + async def health(self, timeout: int = 240): assert timeout > 0 for _ in range(timeout): if not self._inner_health():