From 575fdc2c4c77d7b89b58d667641e0b4f42c506a5 Mon Sep 17 00:00:00 2001 From: jsheng_Linkedin <162757399+fortunecookiee@users.noreply.github.com> Date: Mon, 20 Apr 2026 14:43:25 -0700 Subject: [PATCH] [CI][LoRA] Drop flaky all-None batch from multi-LoRA parity test (#23287) --- python/sglang/test/lora_utils.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/python/sglang/test/lora_utils.py b/python/sglang/test/lora_utils.py index feeb65732..9ce95e7b8 100644 --- a/python/sglang/test/lora_utils.py +++ b/python/sglang/test/lora_utils.py @@ -672,9 +672,6 @@ def create_multiple_batch_test_samples( prompts: List[str], lora_adapter_paths: List[str] ): random.seed(42) - from sglang.srt.utils.common import get_bool_env_var, is_hip - - _use_aiter = get_bool_env_var("SGLANG_USE_AITER") and is_hip() test_cases = [ ( @@ -721,19 +718,6 @@ def create_multiple_batch_test_samples( # ), ] - # [AMD] Aiter may fail this case but the model quality doesn't drop - # Skip this flaky case for now - if not _use_aiter: - test_cases.append( - ( - [ - random.choice(prompts), - random.choice(prompts), - random.choice(prompts), - ], - [None, None, None], - ) - ) return test_cases