Limit pep8 checks to our source

Exclude the .update-env directory, including anything
installed there from third-party packages, when running
pep8.

Change-Id: I2c2ee9146cbf2f5449f7f8d042b578ec3d8d2b83
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
This commit is contained in:
Doug Hellmann
2012-09-28 16:01:51 -04:00
parent 87a2fd76e7
commit 4c44c0468e

View File

@@ -16,7 +16,7 @@ commands = nosetests {posargs}
[testenv:pep8]
deps = pep8==1.3.3
commands = pep8 --repeat --show-source --ignore=E125 --exclude=.venv,.tox,dist,doc,*.egg .
commands = pep8 --repeat --show-source --ignore=E125 --exclude=.venv,.tox,dist,doc,*.egg,.update-venv .
[testenv:cover]
setenv = NOSE_WITH_COVERAGE=1