We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d32b19 commit 20b8138Copy full SHA for 20b8138
.github/workflows/tests.yaml
@@ -23,5 +23,12 @@ jobs:
23
echo "VIRTUAL_ENV=$PWD/.venv" >> $GITHUB_ENV
24
echo "$PWD/.venv/bin" >> $GITHUB_PATH
25
uv sync --dev
26
- - name: Run tests with pytest
27
- run: pytest
+ - name: Run tests with pytest and collect coverage
+ run: pytest --cov=pdfbaker --cov-report=xml
28
+ - name: Upload coverage to Codecov
29
+ uses: codecov/codecov-action@v3
30
+ with:
31
+ file: coverage.xml
32
+ name: pytest
33
+ flags: unittests
34
+ slug: pythonnz/pdfbaker
0 commit comments