From e0ec42c710145b0eb946c97fbcb2a4bec38c4439 Mon Sep 17 00:00:00 2001 From: alisonshao <54658187+alisonshao@users.noreply.github.com> Date: Tue, 2 Dec 2025 00:47:26 -0800 Subject: [PATCH] [CI] Fix 4-GPU test timeout by using 3 partitions (#14287) --- .github/workflows/pr-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index d218b6e22..5634ee9b7 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -563,7 +563,7 @@ jobs: strategy: fail-fast: false matrix: - part: [0, 1] + part: [0, 1, 2] steps: - name: Checkout code uses: actions/checkout@v4 @@ -584,7 +584,7 @@ jobs: timeout-minutes: 20 run: | cd test/srt - python3 run_suite.py --suite per-commit-4-gpu --auto-partition-id ${{ matrix.part }} --auto-partition-size 2 + python3 run_suite.py --suite per-commit-4-gpu --auto-partition-id ${{ matrix.part }} --auto-partition-size 3 unit-test-backend-8-gpu-h200: needs: [check-changes, call-gate, unit-test-backend-2-gpu]