Skip to content

Commit

Permalink
Merge pull request #2659 from alicevision/ci/codecov-tests
Browse files Browse the repository at this point in the history
[ci] Codecov: enable support for test run reports
  • Loading branch information
waaake authored Feb 3, 2025
2 parents 91885af + 0f1cde1 commit 910736b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,16 @@ jobs:
- name: Test with pytest
run: |
pytest tests/
pytest --cov --cov-report=xml
pytest --cov --cov-report=xml --junitxml=junit.xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}

build-windows:
runs-on: windows-latest
Expand Down

0 comments on commit 910736b

Please sign in to comment.