Skip to content

Commit 6a19e39

Browse files
authored
Update python-package.yml
1 parent 2cac771 commit 6a19e39

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,13 @@ jobs:
3636
pip install .
3737
- name: Lint with flake8
3838
run: |
39+
# display flake conf
40+
flake8 --bug-report
3941
# stop the build if there are Python syntax errors or undefined names
40-
flake8 . --bug-report --count --select=E9,F63,F7,F82 --show-source --statistics
42+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
4143
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
42-
flake8 . --bug-report --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
44+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
4345
- name: Test with pytest
4446
run: |
4547
pytest
48+

0 commit comments

Comments
 (0)