Skip to content

Commit 8e972d9

Browse files
authored
[TPU] Skip hanging tests (vllm-project#19115)
Signed-off-by: Siyuan Liu <[email protected]>
1 parent 3336c8c commit 8e972d9

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.buildkite/scripts/hardware_ci/run-tpu-v1-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ run_and_track_test 9 "test_multimodal.py" \
150150
run_and_track_test 10 "test_pallas.py" \
151151
"python3 -m pytest -s -v /workspace/vllm/tests/v1/tpu/test_pallas.py"
152152
run_and_track_test 11 "test_struct_output_generate.py" \
153-
"python3 -m pytest -s -v /workspace/vllm/tests/v1/entrypoints/llm/test_struct_output_generate.py"
153+
"python3 -m pytest -s -v /workspace/vllm/tests/v1/entrypoints/llm/test_struct_output_generate.py -k 'not test_structured_output_with_reasoning_matrices'"
154154
run_and_track_test 12 "test_moe_pallas.py" \
155155
"python3 -m pytest -s -v /workspace/vllm/tests/tpu/test_moe_pallas.py"
156156
run_and_track_test 13 "test_lora.py" \

tests/v1/tpu/test_spmd_model_weight_loading.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,14 @@ def _get_spmd_mesh():
4545
return MESH
4646

4747

48-
@pytest.mark.parametrize("model", [
49-
"Qwen/Qwen2-1.5B-Instruct",
50-
"meta-llama/Llama-3.1-8B-Instruct",
51-
"meta-llama/Llama-3.1-70B-Instruct",
52-
])
48+
@pytest.mark.parametrize(
49+
"model",
50+
[
51+
"Qwen/Qwen2-1.5B-Instruct",
52+
# Skip large models due to CI runner disk space limitations
53+
# "meta-llama/Llama-3.1-8B-Instruct",
54+
# "meta-llama/Llama-3.1-70B-Instruct",
55+
])
5356
def test_tpu_model_loader(model):
5457
# Skip the 70B test if there are less than 8 chips
5558
# TODO: Query using torch xla API, the query API is not working

0 commit comments

Comments
 (0)