Skip to content

Commit

Permalink
Add more flake8 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Jun 17, 2019
1 parent 3fea091 commit a9ec900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ action "Python Syntax Checker" {
}
```
## Flake8 finds Python 3 syntax errors and undefined names
$ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__
$ __flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics__

__E901,E999,F821,F822,F823__ are the "_showstopper_" [flake8](http://flake8.pycqa.org) issues that can halt the runtime with a SyntaxError, NameError, etc. These 5 are different from most other flake8 issues which are merely "style violations" -- useful for readability but they do not effect runtime safety.
* F821: undefined name `name`
Expand Down

0 comments on commit a9ec900

Please sign in to comment.