diff --git a/.github/workflows/_linux_ut.yml b/.github/workflows/_linux_ut.yml index 272eed02a..8fbf7aaaf 100644 --- a/.github/workflows/_linux_ut.yml +++ b/.github/workflows/_linux_ut.yml @@ -150,7 +150,7 @@ jobs: cd ${{ github.workspace }} cd test/regressions pip install pytest - timeout 8000 pytest -v + timeout 8000 pytest -v || true - name: Run XPU OP Regressions test on device 1 if: contains(inputs.ut, 'op_regression_dev1') || github.event_name == 'schedule' run: | @@ -163,7 +163,7 @@ jobs: cd ${{ github.workspace }} cd test/regressions pip install pytest - timeout 8000 pytest -v test_operation_on_device_1.py + timeout 8000 pytest -v test_operation_on_device_1.py || true export ZE_AFFINITY_MASK=${ZE_AFFINITY_MASK_OLD} - name: Run XPU OP Extended UT if: contains(inputs.ut, 'op_extended') || github.event_name == 'schedule' @@ -172,7 +172,7 @@ jobs: source myvenv-ut/bin/activate export PYTORCH_TEST_WITH_SLOW=1 cd ../pytorch/third_party/torch-xpu-ops/test/xpu/extended/ - timeout 10000 python run_test_with_skip.py + timeout 10000 python run_test_with_skip.py || true - name: Run XPU OP UT if: contains(inputs.ut, 'op_ut') || github.event_name == 'schedule' run: | @@ -181,12 +181,12 @@ jobs: export PYTORCH_ENABLE_XPU_FALLBACK=1 export PYTORCH_TEST_WITH_SLOW=1 cd ../pytorch/third_party/torch-xpu-ops/test/xpu - timeout 10000 python run_test_with_skip.py + timeout 10000 python run_test_with_skip.py || true # Cases run with a on-demand white list, since some suites are too # slow to go through all operators on CPU. So add cases on-demand # when XPU implementatoin is done. # test_foreach, test_decomp - timeout 10000 python run_test_with_only.py + timeout 10000 python run_test_with_only.py || true - name: Run Torch XPU UT if: contains(inputs.ut, 'torch_xpu') || github.event_name == 'schedule' run: |