Merge "Pin pep8 to 1.3.3"

This commit is contained in:
Jenkins 2013-03-04 22:06:27 +00:00 committed by Gerrit Code Review
commit 74540a14cd
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ nose
nosehtmloutput
nosexcover
openstack.nose_plugin
pep8
pep8==1.3.3
python-subunit
sphinx>=1.1.2
testrepository>=0.0.13

View File

@ -19,12 +19,12 @@ sitepackages = True
downloadcache = ~/cache/pip
[testenv:pep8]
# E712 comparison to False should be 'if cond is False:' or 'if not cond:'
# E711/E712 comparison to False should be 'if cond is False:' or 'if not cond:'
# query = query.filter(Component.disabled == False)
# E125 continuation line does not distinguish itself from next logical line
commands =
pep8 --repeat --show-source --ignore=E125,E712 --exclude=.venv,.tox,dist,doc,openstack,*egg .
pep8 --repeat --show-source --ignore=E125,E711,E712 --exclude=.venv,.tox,dist,doc,openstack,*egg .
pep8 --repeat --show-source --ignore=E125 --filename=quantum* bin
[testenv:i18n]