CellProfiler / centrosome

An open source image processing library
Other
18 stars 35 forks source link

Travis CI: Add flake8 to find syntax errors & undefined names #86

Closed cclauss closed 6 years ago

cclauss commented 6 years ago

Fixes #87

Add flake8 tests to find Python syntax errors and undefined names.

E901,E999,F821,F822,F823 are the "showstopper" flake8 issues that can halt the runtime with a SyntaxError, NameError, etc. Most other flake8 issues are merely "style violations" -- useful for readability but they do not effect runtime safety.

AetherUnbound commented 6 years ago

@cclauss do you also mind resolving the conflicts on this branch?