From aafba4da8b197d890d2004d41dd08dae2f7dd6f1 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Fri, 9 Nov 2012 13:20:50 -0500 Subject: [PATCH] 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 --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.45.2