]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Make tox.ini run pep8 checks on bin.
authorDan Prince <dprince@redhat.com>
Fri, 9 Nov 2012 18:20:50 +0000 (13:20 -0500)
committerDan Prince <dprince@redhat.com>
Fri, 9 Nov 2012 18:20:50 +0000 (13:20 -0500)
This updates the pep8 checks in our tox.ini file so that we are
also scanning the bin directory.

Change-Id: Ia3465a4bbc6a5fef7da4de45b736d8950c920963

tox.ini

diff --git a/tox.ini b/tox.ini
index 1c490a6bfac885905df958b5740fea2bacefac02..937470e0edbc629d65da574af8553eb7a2417bad 100644 (file)
--- 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