We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 342fefc commit 0db788bCopy full SHA for 0db788b
.github/workflows/test.yaml
@@ -23,12 +23,12 @@ jobs:
23
cd training && poetry install --with dev --no-root
24
- name: Run formatter, linter and type checker
25
run: |
26
- ruff check training
+ poetry run ruff check training
27
# mypy --explicit-package-bases .
28
# flake8 .
29
# interrogate -vv --ignore-init-module --exclude sigma_api .
30
- name: Run tests
31
- run: pytest --cov=training --cov-report term --cov-report lcov:coverage.lcov -vv
+ run: poetry run pytest --cov=training --cov-report term --cov-report lcov:coverage.lcov -vv
32
# - name: Submit coverage report to Coveralls
33
# if: ${{ success() }}
34
# uses: coverallsapp/github-action@1.1.3
0 commit comments