From e70fbc599b8e0306b093b51aa11d13957d7d00a8 Mon Sep 17 00:00:00 2001 From: Alex Brooks Date: Thu, 6 Nov 2025 19:51:27 -0700 Subject: [PATCH] [CI/Build] Loosen STT LoRA Translate Check (Flaky Test) (#28247) Signed-off-by: Alex-Brooks Signed-off-by: Alex Brooks Co-authored-by: Cyrus Leung --- tests/entrypoints/openai/test_translation_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/entrypoints/openai/test_translation_validation.py b/tests/entrypoints/openai/test_translation_validation.py index c060ee2b1922c..d7d407484f16d 100644 --- a/tests/entrypoints/openai/test_translation_validation.py +++ b/tests/entrypoints/openai/test_translation_validation.py @@ -79,7 +79,7 @@ async def test_basic_audio_with_lora(mary_had_lamb): temperature=0.0, ) out = json.loads(translation)["text"].strip().lower() - assert "mary tenía un pequeño cordero" in out + assert "pequeño" in out.split(" ") # NOTE: (NickLucche) the large-v3-turbo model was not trained on translation!