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 c016ef1 commit 59b6a39Copy full SHA for 59b6a39
.github/workflows/CI_build.yml
@@ -33,14 +33,14 @@ jobs:
33
poetry install --with dev
34
- name: Show pip list
35
run: |
36
- pip list
+ poetry pip list
37
- name: Test with coverage
38
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
- run: ruff check .
+ run: poetry ruff check .
44
- name: Check whether import statements are used consistently
45
run: poetry run isort . --check-only --diff
46
0 commit comments