File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
.buildkite/scripts/hardware_ci Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ run_and_track_test 9 "test_multimodal.py" \
150150run_and_track_test 10 "test_pallas.py" \
151151 "python3 -m pytest -s -v /workspace/vllm/tests/v1/tpu/test_pallas.py"
152152run_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 ' "
154154run_and_track_test 12 "test_moe_pallas.py" \
155155 "python3 -m pytest -s -v /workspace/vllm/tests/tpu/test_moe_pallas.py"
156156run_and_track_test 13 "test_lora.py" \
Original file line number Diff line number Diff 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+ ])
5356def 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
You can’t perform that action at this time.
0 commit comments