Skip to content

Commit

Permalink
fix: more poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
senz committed Nov 30, 2024
1 parent 3651dfb commit 6d5bc8b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
python -m pip install coveralls poetry
make install
- name: Code formatting
run: make code-format
run: poetry run make code-format
- name: Unit testing
run: make unit-test
run: poetry run make unit-test
- name: Integration testing
run: make integration-test
run: poetry run make integration-test
- name: Static Analysis
run: make static-analysis
run: poetry run make static-analysis
- name: Security Analysis
run: make security-analysis
run: poetry run make security-analysis
- name: Coveralls
if: ${{ success() }}
env:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ build/
__pycache__/
coverage.xml
.pytest_cache/
.coverage

0 comments on commit 6d5bc8b

Please sign in to comment.