Updates run_tests.sh to exclude openstack-common.

We exclude openstack-common in tox.ini already. This change updates
run_tests.sh to match that behaviour.

Change-Id: I1bf5784193e63156bc5fe140ad6e403669c7909d
This commit is contained in:
Dan Prince 2012-07-13 14:10:56 -04:00
parent 8f745a25a1
commit ede120a32d
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ function run_tests {
function run_pep8 {
echo "Running pep8 ..."
PEP8_EXCLUDE=".venv,.tox,dist,doc"
PEP8_EXCLUDE=".venv,.tox,dist,doc,openstack"
PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --repeat"
PEP8_INCLUDE="."
${wrapper} pep8 $PEP8_OPTIONS $PEP8_INCLUDE