Skip to content

Commit

Permalink
add codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
zkarpinski committed Jun 6, 2024
1 parent 16d8916 commit c0b34f0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ jobs:
- name: Install dependencies
run: poetry install -v
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'

- name: Run pytest
run: |
source .venv/bin/activate
poetry run pytest
poetry run pytest --cov app
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit c0b34f0

Please sign in to comment.