Skip to content

Commit

Permalink
add poetry command
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-huber committed Nov 21, 2024
1 parent c016ef1 commit 59b6a39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:
poetry install --with dev
- name: Show pip list
run: |
pip list
poetry pip list
- name: Test with coverage
run: |
poetry run pytest --cov --cov-report term --cov-report xml --junitxml=xunit-result.xml
- name: Correct coverage paths
run: sed -i "s+$PWD/++g" coverage.xml
- name: Check style against standards using Ruff
run: ruff check .
run: poetry ruff check .
- name: Check whether import statements are used consistently
run: poetry run isort . --check-only --diff

Expand Down

0 comments on commit 59b6a39

Please sign in to comment.