We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a1d868 commit 81e09aaCopy full SHA for 81e09aa
.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
- poetry run ruff check .
+ cd training && poetry run ruff check .
27
# mypy --explicit-package-bases .
28
# flake8 .
29
# interrogate -vv --ignore-init-module --exclude sigma_api .
30
- name: Run tests
31
- run: poetry run pytest --cov=training --cov-report term --cov-report lcov:coverage.lcov -vv
+ run: cd training && 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