From f6a37fc5491815cc76d04de7cbc3b286733def47 Mon Sep 17 00:00:00 2001 From: Li Wang Date: Wed, 14 Jan 2026 16:33:19 +0800 Subject: [PATCH] [CI] Reduce the resource consumption of unit tests (#5891) ### What this PR does / why we need it? Reduce the resource consumption of unit tests: 32U/pr -> 16U /pr - vLLM version: v0.13.0 - vLLM main: https://github.com/vllm-project/vllm/commit/bde38c11df0ea066a740efe9b77fff5418be45df --------- Signed-off-by: wangli --- .github/workflows/_unit_test.yaml | 4 +++- .github/workflows/pr_test_light.yaml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_unit_test.yaml b/.github/workflows/_unit_test.yaml index eefd325c..8ac9dcb6 100644 --- a/.github/workflows/_unit_test.yaml +++ b/.github/workflows/_unit_test.yaml @@ -78,7 +78,9 @@ jobs: --ignore tests/ut/model_loader/netloader/test_netloader_elastic.py \ --ignore tests/ut/kv_connector/test_remote_prefill_lifecycle.py \ --ignore tests/ut/kv_connector/test_remote_decode_lifecycle.py \ - --ignore tests/ut/core/test_scheduler_dynamic_batch.py + --ignore tests/ut/core/test_scheduler_dynamic_batch.py \ + --ignore tests/ut/kv_connector/test_mooncake_connector.py \ + --ignore tests/ut/worker/test_worker_v1.py - name: Upload coverage to Codecov # only upload coverage when commits merged diff --git a/.github/workflows/pr_test_light.yaml b/.github/workflows/pr_test_light.yaml index 147967eb..cf07479c 100644 --- a/.github/workflows/pr_test_light.yaml +++ b/.github/workflows/pr_test_light.yaml @@ -85,7 +85,7 @@ jobs: uses: ./.github/workflows/_unit_test.yaml with: vllm: ${{ matrix.vllm_version }} - runner: linux-amd64-cpu-16-hk + runner: linux-amd64-cpu-8-hk image: quay.nju.edu.cn/ascend/cann:8.2.rc2-910b-ubuntu22.04-py3.11 type: pr