Skip to content

Commit

Permalink
Fixed codecov wf
Browse files Browse the repository at this point in the history
  • Loading branch information
gsheth21 committed Oct 31, 2024
1 parent bcc38e7 commit fcb1d1a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
uses: actions/setup-python@v4

- name: Install dependencies
run: pip install pytest pytest-cov
run: pip install coverage codecov

- name: Run tests
run: python -m unittest tests/test_app.py
- name: Run tests and collect coverage
run: |
coverage run -m unittest tests/test_app.py
coverage xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit fcb1d1a

Please sign in to comment.