Skip to content

Commit 7918766

Browse files
committed
Fix pytest command
1 parent 526b4ea commit 7918766

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-package-conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
conda install flake8
2727
# stop the build if there are Python syntax errors or undefined names
2828
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
29-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
29+
# exit-zero treats all errors as warnings. The GitHeb editor is 127 chars wide
3030
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3131
- name: Test with pytest
3232
run: |
3333
conda install pytest
34-
pytest
34+
pytest --no-test-found-exit-code=0

0 commit comments

Comments
 (0)