From: Dan Prince Date: Fri, 9 Nov 2012 18:20:50 +0000 (-0500) Subject: Make tox.ini run pep8 checks on bin. X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=aafba4da8b197d890d2004d41dd08dae2f7dd6f1;p=openstack-build%2Fneutron-build.git 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 --- diff --git a/tox.ini b/tox.ini index 1c490a6bf..937470e0e 100644 --- a/tox.ini +++ b/tox.ini @@ -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