Add pyflakes

Add tox option to use pyflakes.

Change-Id: Ic77ec3f54cb89341d5b01feb3417e07f43d20c9c
Signed-off-by: Chuck Short <chuck.short@canonical.com>
This commit is contained in:
Chuck Short 2013-01-02 08:43:53 -06:00
parent 18269eaad8
commit 2adf688923
2 changed files with 26 additions and 0 deletions

22
tools/flakes.py Normal file
View File

@ -0,0 +1,22 @@
"""
wrapper for pyflakes to ignore gettext based warning:
"undefined name '_'"
From https://bugs.launchpad.net/pyflakes/+bug/844592
"""
import __builtin__
import os
import sys
from pyflakes.scripts.pyflakes import main
if __name__ == "__main__":
names = os.environ.get('PYFLAKES_BUILTINS', '_')
names = [x.strip() for x in names.split(',')]
for x in names:
if not hasattr(__builtin__, x):
setattr(__builtin__, x, True)
del names, os, __builtin__
sys.exit(main())

View File

@ -44,3 +44,7 @@ commands = /bin/bash run_tests.sh -N --coverage-xml
[testenv:jenkinsvenv]
setenv = NOSE_WITH_XUNIT=1
commands = {posargs}
[testenv:pyflakes]
deps = pyflakes
commands = python tools/flakes.py cinder