We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58362db commit ebe4302Copy full SHA for ebe4302
.github/workflows/test.yml
@@ -111,13 +111,14 @@ jobs:
111
export CARGO_INCREMENTAL="1"
112
cargo llvm-cov clean --workspace
113
uv run -- maturin dev --uv
114
- uv run -- pytest -vv -n auto python/tests --cov natsrpy --cov-report xml
+ uv run -- pytest -vv python/tests --cov natsrpy --cov-report xml
115
cargo llvm-cov report --lcov --output-path coverage.lcov
116
+ cat coverage.lcov
117
- uses: codecov/codecov-action@v6
118
with:
119
fail_ci_if_error: false
120
token: ${{ secrets.CODECOV_TOKEN }}
- files: ./coverage.lcov,./coverage.xml
121
+ files: coverage.lcov
122
verbose: true
123
- name: Teardown docker
124
if: always()
0 commit comments