server: tests - longer inference timeout for CI

This commit is contained in:
Pierrick HYMBERT 2024-02-25 21:55:20 +01:00
parent f09d46e3b9
commit 0037c628ff

View file

@ -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: