From 886ccbe5bae5ac3562f2b73c7770bba73d2ea34e Mon Sep 17 00:00:00 2001 From: Zhuohan Li Date: Thu, 4 Sep 2025 14:58:44 -0700 Subject: [PATCH] [CI/Build] Reduce the number of redundant cases to test for LoRA (#24276) Signed-off-by: Zhuohan Li --- tests/lora/test_layers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lora/test_layers.py b/tests/lora/test_layers.py index 6e2dda464d8eb..891bc75fcdee0 100644 --- a/tests/lora/test_layers.py +++ b/tests/lora/test_layers.py @@ -60,9 +60,9 @@ DEVICES = ([ # prefill stage(True) or decode stage(False) STAGES = [True, False] -NUM_RANDOM_SEEDS = 6 +NUM_RANDOM_SEEDS = 2 -VOCAB_PARALLEL_EMBEDDING_TEST_NUM_RANDOM_SEEDS = 128 +VOCAB_PARALLEL_EMBEDDING_TEST_NUM_RANDOM_SEEDS = 2 @pytest.fixture(autouse=True)