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 c862b68 commit 61144e1Copy full SHA for 61144e1
.github/workflows/python-package.yml
@@ -28,7 +28,7 @@ jobs:
28
run: |
29
python -m pip install --upgrade pip
30
python -m pip install flake8 pytest
31
- if exist requirements.txt (pip install -r requirements.txt)
+ if (Test-Path requirements.txt) { pip install -r requirements.txt }
32
- name: Lint with flake8
33
34
# stop the build if there are Python syntax errors or undefined names
@@ -37,4 +37,4 @@ jobs:
37
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
38
- name: Test with pytest
39
40
- pytest
+ python -m pytest -v # Added -v for verbose output
0 commit comments