Skip to content

Commit 839a383

Browse files
committed
try poetry run
1 parent f108d5d commit 839a383

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/CI_build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,14 @@ jobs:
3232
poetry lock
3333
poetry install --with dev
3434
- name: Show pip list
35-
run: |
36-
pip list
35+
run: poetry run pip list
3736
- name: Test with coverage
3837
run: |
3938
poetry run pytest --cov --cov-report term --cov-report xml --junitxml=xunit-result.xml
4039
- name: Correct coverage paths
4140
run: sed -i "s+$PWD/++g" coverage.xml
4241
- name: Check style against standards using Ruff
43-
run: |
44-
pip install ruff
45-
ruff check .
42+
run: poetry run ruff check .
4643
- name: Check whether import statements are used consistently
4744
run: poetry run isort . --check-only --diff
4845

0 commit comments

Comments
 (0)