From d9b31011aa836d7ddc3eabd88a888b36056c0334 Mon Sep 17 00:00:00 2001 From: Lifu Huang Date: Sat, 25 Oct 2025 12:16:36 -0700 Subject: [PATCH] Skip TestLlama4LoRA in CI (#12098) --- test/srt/lora/test_lora_llama4.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/srt/lora/test_lora_llama4.py b/test/srt/lora/test_lora_llama4.py index c4a8695fc..58cf52109 100644 --- a/test/srt/lora/test_lora_llama4.py +++ b/test/srt/lora/test_lora_llama4.py @@ -6,6 +6,7 @@ from sglang.test.test_utils import ( DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH, DEFAULT_URL_FOR_TEST, CustomTestCase, + is_in_ci, popen_launch_server, ) @@ -17,6 +18,7 @@ MODELS = [ ] +@unittest.skipIf(is_in_ci(), "To reduce the CI execution time.") class TestLlama4LoRA(CustomTestCase): @classmethod def setUpClass(cls):