Make tox.ini run pep8 checks on bin.

This updates the pep8 checks in our tox.ini file so that we are
also scanning the bin directory.

Change-Id: I2c0520c1239fcbda6b5b70f2d20709b96b94a4c5
This commit is contained in:
Dan Prince 2012-11-09 12:56:25 -05:00
parent 859fd1c409
commit 4039f3aa3c

View File

@ -18,7 +18,9 @@ downloadcache = ~/cache/pip
[testenv:pep8] [testenv:pep8]
deps = pep8==1.3.3 deps = pep8==1.3.3
commands = pep8 --ignore=E125,E126,E711,E712 --repeat --show-source --exclude=.venv,.tox,dist,doc,openstack . bin/glance-control commands =
pep8 --ignore=E125,E126,E711,E712 --repeat --show-source --exclude=.venv,.tox,dist,doc,openstack .
pep8 --ignore=E125,E126,E711,E712 --repeat --show-source --filename=glance* bin
[testenv:cover] [testenv:cover]
setenv = NOSE_WITH_COVERAGE=1 setenv = NOSE_WITH_COVERAGE=1