Skip to content

Commit

Permalink
ci: install pytest and pytest-cov
Browse files Browse the repository at this point in the history
  • Loading branch information
jjjermiah committed Jan 21, 2024
1 parent c89f010 commit 1f2df96
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
run: poetry install

- name: Test with pytest
run: pytest --cov=./ --cov-report=xml
run: |
pip install pytest
pip install pytest-cov
pytest --cov=./ --cov-report=xml
- name: Use Codecov to track coverage
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 1f2df96

Please sign in to comment.