chore: remove redundant test-complete job from test workflow (#21106)

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 <noreply@anthropic.com>
This commit is contained in:
jquinter 2026-02-13 13:39:00 -03:00 committed by GitHub
parent 1e0b1c8334
commit 93e8127562
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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!"