Skip to content

Commit

Permalink
coverage action: fix calling
Browse files Browse the repository at this point in the history
  • Loading branch information
ebonnal committed Jan 2, 2025
1 parent 2a8a18e commit c3054b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- name: unittest
run: |
python -m pip install -r requirements-dev.txt
coverage run -m unittest
python -m coverage run -m unittest
- name: Generate coverage report
run: coverage report --fail-under=100 # Adjust minimum coverage threshold as needed
run: python -m coverage report --fail-under=100

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit c3054b2

Please sign in to comment.