Unverified Commit 3253ae76 authored by Michael Goin's avatar Michael Goin Committed by GitHub
Browse files

[Flaky CI] Increase timeout tolerance for...


[Flaky CI] Increase timeout tolerance for test_mp_crash_detection+test_default_mm_lora_chat_completions (#23028)
Signed-off-by: default avatarmgoin <mgoin64@gmail.com>
parent 000cceca
......@@ -48,7 +48,8 @@ def multimodal_server(): # noqa: F811
f"{{\"audio\": \"{AUDIO_LORA_PATH}\"}}",
]
with RemoteOpenAIServer(MULTIMODAL_MODEL_NAME, args) as remote_server:
with RemoteOpenAIServer(MULTIMODAL_MODEL_NAME, args,
max_wait_seconds=480) as remote_server:
yield remote_server
......
......@@ -255,8 +255,8 @@ async def test_mp_crash_detection(monkeypatch: pytest.MonkeyPatch):
pass
end = time.perf_counter()
assert end - start < 60, (
"Expected vLLM to gracefully shutdown in <60s "
assert end - start < 100, (
"Expected vLLM to gracefully shutdown in <100s "
"if there is an error in the startup.")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment