From e19a62c7df3d2431c41d3554e1de5f51868f0264 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Fri, 9 Nov 2012 14:01:55 -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. Additionally, it updates the main pep8 check so that it scans keystone properly as well. Previously there were a bunch of files getting skipped due to some of the pep8 pattern matching. Change-Id: I13827f1c1e4155aa6979c10e981da5422391bf2d --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 344f60ad81..b73d0ca17e 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,9 @@ commands = nosetests {posargs} [testenv:pep8] deps = pep8==1.3.3 -commands = pep8 --exclude=vcsversion.py,*.pyc,openstack --repeat --show-source bin doc httpd keystone setup.py tests +commands = + pep8 --exclude=.venv,.tox,dist,doc,openstack,vendor,*egg --repeat --show-source . + pep8 --repeat --show-source --filename=keystone* bin [tox:jenkins] downloadcache = ~/cache/pip