We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de24054 commit b2c232bCopy full SHA for b2c232b
1 file changed
.github/workflows/ci.yml
@@ -147,18 +147,13 @@ jobs:
147
- name: Install dependencies
148
run: |
149
uv sync --dev
150
- uv add --dev coverage[toml]
+ uv add --dev pytest-cov
151
152
- name: Run tests with coverage
153
154
- uv run coverage run -m pytest tests/
155
- uv run coverage report --show-missing
156
- uv run coverage xml
+ uv run pytest --cov --cov-branch --cov-report=xml tests/
157
158
- - name: Upload coverage to Codecov
159
- uses: codecov/codecov-action@v3
+ - name: Upload coverage reports to Codecov
+ uses: codecov/codecov-action@v5
160
with:
161
- file: ./coverage.xml
162
- flags: unittests
163
- name: codecov-umbrella
164
- fail_ci_if_error: false
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments