Skip to content

Commit

Permalink
Use poetry to run commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa committed Oct 17, 2024
1 parent 342fefc commit 0db788b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
cd training && poetry install --with dev --no-root
- name: Run formatter, linter and type checker
run: |
ruff check training
poetry run ruff check training
# mypy --explicit-package-bases .
# flake8 .
# interrogate -vv --ignore-init-module --exclude sigma_api .
- name: Run tests
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
# - name: Submit coverage report to Coveralls
# if: ${{ success() }}
# uses: coverallsapp/[email protected]
Expand Down

0 comments on commit 0db788b

Please sign in to comment.