From ca95a64e05611e4e4de368d90b43b9e452a14ba6 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 13 Apr 2024 12:30:26 -0700 Subject: [PATCH] fix test /health --- tests/test_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_models.py b/tests/test_models.py index 6f9a6cc69..9097d5a69 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -269,7 +269,7 @@ async def test_add_model_run_health(): model_name = f"azure-model-health-check-{model_id}" print("adding model", model_name) await add_model_for_health_checking(session=session, model_id=model_id) - await asyncio.sleep(10) + await asyncio.sleep(30) print("calling /model/info") await get_model_info(session=session, key=key) print("calling v2/model/info")