We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce40583 commit cbfd21bCopy full SHA for cbfd21b
.github/workflows/lint_pr.yml
@@ -94,8 +94,11 @@ jobs:
94
if: ${{ matrix.tool == 'pytest' }}
95
id: pytest
96
run: |
97
- pytest ./patterns
98
- pytest --doctest-modules ./patterns || true
+ echo "Running pytest discovery..."
+ python -m pytest --collect-only -v
99
+ echo "Running tests..."
100
+ python -m pytest ./tests -v
101
+ python -m pytest --doctest-modules ./patterns -v || true
102
103
# Check Python version compatibility
104
- name: Check Python version compatibility
0 commit comments