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: Ia3465a4bbc6a5fef7da4de45b736d8950c920963
This commit is contained in:
Dan Prince 2012-11-09 13:20:50 -05:00
parent c89d71f14a
commit aafba4da8b
1 changed files with 3 additions and 1 deletions

View File

@ -21,7 +21,9 @@ downloadcache = ~/cache/pip
[testenv:pep8]
deps = pep8
setuptools_git>=0.4
commands = pep8 --repeat --show-source --ignore=E125 --exclude=.venv,.tox,dist,doc,openstack,*egg .
commands =
pep8 --repeat --show-source --ignore=E125 --exclude=.venv,.tox,dist,doc,openstack,*egg .
pep8 --repeat --show-source --ignore=E125 --filename=quantum* bin
[testenv:cover]
setenv = NOSE_WITH_COVERAGE=1