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 c743aec commit 9b7759b
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/pullrequestchecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,17 @@ jobs:
path: ~/.virtualenvs
key: poetry-$
restore-keys: |
poetry-$
poetry-$
- name: Install Dependencies using Poetry
run: poetry install
if: steps.cache.outputs.cache-hit != 'true'

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

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

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

0 comments on commit 9b7759b

Please sign in to comment.