Skip to content

Commit c090d79

Browse files
authored
full flake8 / PEP8 compliance check
1 parent e454ee2 commit c090d79

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/pep8-check.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,5 @@ jobs:
2727
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2828
- name: Lint with flake8
2929
run: |
30-
# stop the build if there are Python syntax errors or undefined names
31-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
32-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
33-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
30+
# check for all PEP8 compliance issues
31+
flake8 .

0 commit comments

Comments
 (0)