We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e154e35 + c0b34f0 commit c5cecb9Copy full SHA for c5cecb9
1 file changed
.github/workflows/testing.yml
@@ -44,8 +44,13 @@ jobs:
44
- name: Install dependencies
45
run: poetry install -v
46
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
47
-
48
- name: Run pytest
49
run: |
50
source .venv/bin/activate
51
- poetry run pytest
+ poetry run pytest --cov app
+ - name: Upload coverage to Codecov
52
+ uses: codecov/codecov-action@v4
53
+ with:
54
+ verbose: true
55
+ env:
56
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments