From 0037c628ff2d2732b2b0a115ad4e48e726d49dae Mon Sep 17 00:00:00 2001 From: Pierrick HYMBERT Date: Sun, 25 Feb 2024 21:55:20 +0100 Subject: [PATCH] server: tests - longer inference timeout for CI --- examples/server/tests/features/steps/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/server/tests/features/steps/steps.py b/examples/server/tests/features/steps/steps.py index 75f6f1c61..d2f1d7393 100644 --- a/examples/server/tests/features/steps/steps.py +++ b/examples/server/tests/features/steps/steps.py @@ -700,7 +700,7 @@ async def wait_for_health_status(context, print(f"Starting checking for health for expected_health_status={expected_health_status}") timeout = 3 # seconds if expected_health_status == 'idle': - timeout = 10 # CI slow inference + timeout = 180 # CI slow inference interval = 0.5 counter = 0 async with aiohttp.ClientSession() as session: