Make run_tests.sh run pep8 checks on bin.

This updates the pep8 checks in our run_tests.sh script
so that we are scanning the bin directory.

Change-Id: I0ad51b7747edbcb0dbcfb72f92a43dd8f2efc768
This commit is contained in:
Dan Prince 2012-11-09 12:58:04 -05:00
parent 4039f3aa3c
commit 6e99270283

View File

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