Exclude openstack-common from pep8 test

Fixes bug #1048962

Added "openstack" to PEP8_EXCLUDE in run_tests.sh

Change-Id: I5919c97681b1f037e231df7ddb449c2a16366128
This commit is contained in:
Zhongyue Luo 2012-09-11 14:50:13 +08:00
parent cd3692621e
commit fe5f711482
1 changed files with 1 additions and 1 deletions

View File

@ -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"