Skip to content

Commit

Permalink
lint python test: python -m pytest --no-showlocals
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCardin committed Nov 26, 2024
1 parent 045a6d7 commit 524ca4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow-lint-test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:

- name: Test with pytest
run: |
python -m pytest
python -m pytest --no-showlocals
- name: Run tests with coverage (coverage must be at least 80% to pass)
if: inputs.skip-coverage != 'true'
run: |
python -m pytest --cov=. --cov-fail-under=80
python -m pytest --cov=. --cov-fail-under=80 --no-showlocals

0 comments on commit 524ca4b

Please sign in to comment.