We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f94e8a commit 6e82b6fCopy full SHA for 6e82b6f
.github/workflows/test.yml
@@ -111,8 +111,13 @@ jobs:
111
export CARGO_INCREMENTAL="1"
112
cargo llvm-cov clean --workspace
113
uv run -- maturin dev --uv
114
- uv run -- pytest -vv python/tests --cov natsrpy --cov-report xml
+ uv run -- pytest -vv python/tests --cov natsrpy --cov-report xml --junitxml=junit.xml -o junit_family=legacy
115
cargo llvm-cov report --lcov --output-path coverage.lcov
116
+ - name: Upload test results to Codecov
117
+ if: ${{ !cancelled() }}
118
+ uses: codecov/test-results-action@v1
119
+ with:
120
+ token: ${{ secrets.CODECOV_TOKEN }}
121
- uses: codecov/codecov-action@v5
122
with:
123
fail_ci_if_error: false
0 commit comments