From 4039f3aa3ca9615314c29a2d15cb0e1edf7bfb51 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Fri, 9 Nov 2012 12:56:25 -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: I2c0520c1239fcbda6b5b70f2d20709b96b94a4c5 --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index dc8aab4805..7456d43868 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,9 @@ downloadcache = ~/cache/pip [testenv:pep8] 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] setenv = NOSE_WITH_COVERAGE=1