Add bin directory to flake8 when not in venv

If doing run_tests.sh -N -p we only check cinder*
This patch adds a directive to also check the files
in bin/

Change-Id: Ia68073e16067df978475db058c9c0693f35df81c
This commit is contained in:
John Griffith 2013-08-05 13:43:24 -06:00
parent 2380feff7c
commit e940c0374d

View File

@ -180,7 +180,7 @@ function copy_subunit_log {
function run_pep8 {
echo "Running flake8 ..."
bash -c "${wrapper} flake8"
bash -c "${wrapper} flake8 cinder* bin/*"
}