Skip to content

Commit

Permalink
try poetry run
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-huber committed Nov 21, 2024
1 parent f108d5d commit 839a383
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,14 @@ jobs:
poetry lock
poetry install --with dev
- name: Show pip list
run: |
pip list
run: poetry run 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: |
pip install ruff
ruff check .
run: poetry run ruff check .
- name: Check whether import statements are used consistently
run: poetry run isort . --check-only --diff

Expand Down

0 comments on commit 839a383

Please sign in to comment.