From 979ff44ceac0b6e54762221ff9f67c93ff75245c Mon Sep 17 00:00:00 2001 From: Richard Zou Date: Tue, 17 Mar 2026 11:26:38 -0400 Subject: [PATCH] [BugFix] PyTorch Compilation Tests should error if any test fails (#37300) Signed-off-by: Richard Zou --- .buildkite/test_areas/pytorch.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/test_areas/pytorch.yaml b/.buildkite/test_areas/pytorch.yaml index 97cb3cedc..26334593b 100644 --- a/.buildkite/test_areas/pytorch.yaml +++ b/.buildkite/test_areas/pytorch.yaml @@ -35,7 +35,7 @@ steps: # as it is a heavy test that is covered in other steps. # Use `find` to launch multiple instances of pytest so that # they do not suffer from https://github.com/vllm-project/vllm/issues/28965 - - "find compile/fullgraph/ -name 'test_*.py' -not -name 'test_full_graph.py' -exec pytest -s -v {} \\;" + - "find compile/fullgraph/ -name 'test_*.py' -not -name 'test_full_graph.py' -print0 | xargs -0 -n1 -I{} pytest -s -v '{}'" - label: PyTorch Fullgraph timeout_in_minutes: 30