From 627d2cd87d7d916e5d9acbf95006a5fd51a52762 Mon Sep 17 00:00:00 2001 From: chuanqiw Date: Tue, 4 Jun 2024 17:15:03 +0000 Subject: [PATCH] [CI] disable td for xpu ci test by default (#127611) Due to the xpu ci test has been enabled td by default, a lot of test cases (75%) have been skipped in CI tests. It caused some ci failures escaped from the ci tests, for example issue #127539. This PR depends on PR #127595 landed. Pull Request resolved: https://github.com/pytorch/pytorch/pull/127611 Approved by: https://github.com/etaf, https://github.com/atalman --- test/run_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/run_test.py b/test/run_test.py index 23160d01281..d9ef52a42af 100755 --- a/test/run_test.py +++ b/test/run_test.py @@ -1200,6 +1200,7 @@ def parse_args(): and not IS_SLOW and not TEST_WITH_ROCM and not IS_MACOS + and "xpu" not in BUILD_ENVIRONMENT and "onnx" not in BUILD_ENVIRONMENT and "debug" not in BUILD_ENVIRONMENT and "parallelnative" not in BUILD_ENVIRONMENT,