Re-add Codecov coverage upload to GHA matrix workflow

This commit is contained in:
joereyna
2026-03-31 16:44:12 -07:00
parent 94e0f44798
commit d38498c3ef
3 changed files with 17 additions and 1 deletions
+13 -1
View File
@@ -171,4 +171,16 @@ jobs:
--reruns ${{ matrix.test-group.reruns }} \
--reruns-delay 1 \
--dist=loadscope \
--durations=20
--durations=20 \
--cov=litellm \
--cov-report=xml:coverage-${{ matrix.test-group.name }}.xml \
--cov-append
- name: Upload coverage to Codecov
if: always()
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage-${{ matrix.test-group.name }}.xml
flags: ${{ matrix.test-group.name }}
fail_ci_if_error: false