From: Kevin L. Mitchell Date: Mon, 6 Aug 2012 15:00:17 +0000 (-0500) Subject: Exempt openstack-common from pep8 check X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=12628f6f0590740b0d3f543620d184a10397ca0e;p=openstack-build%2Fneutron-build.git Exempt openstack-common from pep8 check The openstack-common project already does its own pep8 checks; we don't need to duplicate the effort. This also avoids issues with pep8 version skew between projects. Change-Id: I50d6e1b21c743d811e44b415017ca7e19687c9c2 --- diff --git a/tox.ini b/tox.ini index 823b6b2e3..1c490a6bf 100644 --- a/tox.ini +++ b/tox.ini @@ -21,7 +21,7 @@ downloadcache = ~/cache/pip [testenv:pep8] deps = pep8 setuptools_git>=0.4 -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,openstack,*egg . [testenv:cover] setenv = NOSE_WITH_COVERAGE=1