From c03321781a5dfe7643e794e4724101a1531c37c6 Mon Sep 17 00:00:00 2001 From: wangxiyuan Date: Wed, 3 Sep 2025 15:53:50 +0800 Subject: [PATCH] [CI] skip unstable UT (#2716) See #2687 we notice that test_platform and test_vocab_parallel_embedding is unstable, let's skip them first. Signed-off-by: wangxiyuan --- .github/workflows/vllm_ascend_test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vllm_ascend_test.yaml b/.github/workflows/vllm_ascend_test.yaml index 1fc10dc..9e67393 100644 --- a/.github/workflows/vllm_ascend_test.yaml +++ b/.github/workflows/vllm_ascend_test.yaml @@ -117,7 +117,7 @@ jobs: TORCH_DEVICE_BACKEND_AUTOLOAD: 0 run: | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/Ascend/ascend-toolkit/latest/x86_64-linux/devlib - pytest -sv --cov --cov-report=xml:unittests-coverage.xml tests/ut + pytest -sv --cov --cov-report=xml:unittests-coverage.xml tests/ut --ignore=tests/ut/test_platform.py --ignore=tests/ut/ops/test_vocab_parallel_embedding.py - name: Upload coverage to Codecov if: ${{ matrix.vllm_version == 'main' }}