Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
femtotrader committed Jul 24, 2023
1 parent 9b7759b commit 60be88e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pullrequestchecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'

- name: Run pytest
run: PYTHONPATH=src/ poetry run python -m pytest -v --cov=src/ tests/
run: poetry run python -m pytest -v --cov=./ tests/

- name: Run Coverage
run: PYTHONPATH=src/ poetry run python -m coverage report -m;
run: poetry run python -m coverage report -m;

- name: Generate XML Report
run: PYTHONPATH=src/ poetry run python -m coverage xml
run: poetry run python -m coverage xml

0 comments on commit 60be88e

Please sign in to comment.