Unverified Commit 8e972d9c authored by Siyuan Liu's avatar Siyuan Liu Committed by GitHub
Browse files

[TPU] Skip hanging tests (#19115)


Signed-off-by: default avatarSiyuan Liu <lsiyuan@google.com>
parent 3336c8cf
...@@ -150,7 +150,7 @@ run_and_track_test 9 "test_multimodal.py" \ ...@@ -150,7 +150,7 @@ run_and_track_test 9 "test_multimodal.py" \
run_and_track_test 10 "test_pallas.py" \ run_and_track_test 10 "test_pallas.py" \
"python3 -m pytest -s -v /workspace/vllm/tests/v1/tpu/test_pallas.py" "python3 -m pytest -s -v /workspace/vllm/tests/v1/tpu/test_pallas.py"
run_and_track_test 11 "test_struct_output_generate.py" \ run_and_track_test 11 "test_struct_output_generate.py" \
"python3 -m pytest -s -v /workspace/vllm/tests/v1/entrypoints/llm/test_struct_output_generate.py" "python3 -m pytest -s -v /workspace/vllm/tests/v1/entrypoints/llm/test_struct_output_generate.py -k 'not test_structured_output_with_reasoning_matrices'"
run_and_track_test 12 "test_moe_pallas.py" \ run_and_track_test 12 "test_moe_pallas.py" \
"python3 -m pytest -s -v /workspace/vllm/tests/tpu/test_moe_pallas.py" "python3 -m pytest -s -v /workspace/vllm/tests/tpu/test_moe_pallas.py"
run_and_track_test 13 "test_lora.py" \ run_and_track_test 13 "test_lora.py" \
......
...@@ -45,11 +45,14 @@ def _get_spmd_mesh(): ...@@ -45,11 +45,14 @@ def _get_spmd_mesh():
return MESH return MESH
@pytest.mark.parametrize("model", [ @pytest.mark.parametrize(
"Qwen/Qwen2-1.5B-Instruct", "model",
"meta-llama/Llama-3.1-8B-Instruct", [
"meta-llama/Llama-3.1-70B-Instruct", "Qwen/Qwen2-1.5B-Instruct",
]) # Skip large models due to CI runner disk space limitations
# "meta-llama/Llama-3.1-8B-Instruct",
# "meta-llama/Llama-3.1-70B-Instruct",
])
def test_tpu_model_loader(model): def test_tpu_model_loader(model):
# Skip the 70B test if there are less than 8 chips # Skip the 70B test if there are less than 8 chips
# TODO: Query using torch xla API, the query API is not working # TODO: Query using torch xla API, the query API is not working
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment