From 3f4086d10849e37d31ffa3792dcfd2e5c13f7dc6 Mon Sep 17 00:00:00 2001 From: Julio Quinteros Pro Date: Fri, 13 Feb 2026 06:08:11 -0300 Subject: [PATCH] chore: remove redundant test-complete job from test workflow The test-complete aggregate job adds no value as GitHub Actions already provides visibility into matrix job results. Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/test-litellm-matrix.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/test-litellm-matrix.yml b/.github/workflows/test-litellm-matrix.yml index b442c7dd5f5..d83fedcb2ae 100644 --- a/.github/workflows/test-litellm-matrix.yml +++ b/.github/workflows/test-litellm-matrix.yml @@ -93,17 +93,3 @@ jobs: --maxfail=10 \ -n ${{ matrix.test-group.workers }} \ --durations=20 - - # Aggregate job to require all matrix jobs pass - test-complete: - needs: test - runs-on: ubuntu-latest - if: always() - steps: - - name: Check test results - run: | - if [ "${{ needs.test.result }}" != "success" ]; then - echo "Some test groups failed" - exit 1 - fi - echo "All test groups passed!"