We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f108d5d commit 839a383Copy full SHA for 839a383
.github/workflows/CI_build.yml
@@ -32,17 +32,14 @@ jobs:
32
poetry lock
33
poetry install --with dev
34
- name: Show pip list
35
- run: |
36
- pip list
+ run: poetry run pip list
37
- name: Test with coverage
38
run: |
39
poetry run pytest --cov --cov-report term --cov-report xml --junitxml=xunit-result.xml
40
- name: Correct coverage paths
41
run: sed -i "s+$PWD/++g" coverage.xml
42
- name: Check style against standards using Ruff
43
44
- pip install ruff
45
- ruff check .
+ run: poetry run ruff check .
46
- name: Check whether import statements are used consistently
47
run: poetry run isort . --check-only --diff
48
0 commit comments