From: Zhongyue Luo Date: Tue, 11 Sep 2012 06:50:13 +0000 (+0800) Subject: Exclude openstack-common from pep8 test X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=1fafffb8c261a739b9b07dff16f479db06bba03c;p=openstack-build%2Fneutron-build.git Exclude openstack-common from pep8 test Fixes bug #1048962 Added "openstack" to PEP8_EXCLUDE in run_tests.sh Change-Id: I5919c97681b1f037e231df7ddb449c2a16366128 --- diff --git a/run_tests.sh b/run_tests.sh index 4282058ef..cd8404914 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -97,7 +97,7 @@ function run_pylint { function run_pep8 { echo "Running pep8 ..." - PEP8_EXCLUDE="vcsversion.py,*.pyc" + PEP8_EXCLUDE="vcsversion.py,*.pyc,openstack" # we now turn off pep8 1.3 E125 check to avoid make change to # openstack-common . PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --ignore=E125 --repeat --show-source"