From fe5f71148232c102aafcb9cc730f70db6295870a Mon Sep 17 00:00:00 2001 From: Zhongyue Luo Date: Tue, 11 Sep 2012 14:50:13 +0800 Subject: [PATCH] Exclude openstack-common from pep8 test Fixes bug #1048962 Added "openstack" to PEP8_EXCLUDE in run_tests.sh Change-Id: I5919c97681b1f037e231df7ddb449c2a16366128 --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 4282058efa..cd84049143 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"