From c7d2a554baf8694503e6865b5df300650b6c6b6b Mon Sep 17 00:00:00 2001 From: Huamin Li <3ericli@gmail.com> Date: Thu, 30 Oct 2025 03:13:03 -0700 Subject: [PATCH] [CI Failure] fix test_default_mm_loras (#27795) Signed-off-by: Huamin Li <3ericli@gmail.com> --- tests/lora/test_default_mm_loras.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/lora/test_default_mm_loras.py b/tests/lora/test_default_mm_loras.py index 1a5b9ba3641d..dfc45e78e464 100644 --- a/tests/lora/test_default_mm_loras.py +++ b/tests/lora/test_default_mm_loras.py @@ -30,7 +30,8 @@ VLLM_RUNNER_BASE_KWARGS = { "enable_lora": "True", "max_num_seqs": 2, "max_lora_rank": 320, - "max_model_len": 12800, + # Keep these LoRA tests on short-RoPE for determinism post-LongRoPE change. + "max_model_len": 4096, "gpu_memory_utilization": 0.8, "limit_mm_per_prompt": {"audio": 1}, "enforce_eager": True,