Use flake8 to find Python syntax errors or undefined names

This commit is contained in:
cclauss 2018-02-14 23:10:41 +01:00 committed by Brian May
parent 93b969a049
commit d11f5b9d16
2 changed files with 9 additions and 3 deletions

View File

@ -7,7 +7,13 @@ python:
- pypy
install:
- travis_retry pip install -q pytest mock
- travis_retry pip install -q flake8 pytest mock
before_script:
# stop the build if there are Python syntax errors or undefined names.
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics; fi
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide.
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics; fi
script:
- PYTHONPATH=. py.test

View File

@ -2,9 +2,9 @@ import sys
import zlib
import imp
verbosity = verbosity # noqa: F821 must be a previously defined global
z = zlib.decompressobj()
while 1:
global verbosity
name = sys.stdin.readline().strip()
if name:
name = name.decode("ASCII")
@ -22,7 +22,7 @@ while 1:
setattr(sys.modules[parent], parent_name, module)
code = compile(content, name, "exec")
exec(code, module.__dict__) # nosec
exec(code, module.__dict__) # nosec
sys.modules[name] = module
else:
break