summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorAlex Meade <alex.meade@rackspace.com>2013-07-05 17:23:46 -0400
committerAlex Meade <alex.meade@rackspace.com>2013-07-05 17:23:46 -0400
commit6139663e09c52c19fa218a220a5d44733e641966 (patch)
tree0fc3def5fb047f322c423b07e30d9467085cc77a /run_tests.sh
parentfca985c09e11c581b61b9edcae19673e3112093a (diff)
downloadpython-keystoneclient-6139663e09c52c19fa218a220a5d44733e641966.tar.gz
Flake8 should ignore build folder
This adds 'build' to the exclude list for flake8 Fixes bug 1198329 Change-Id: Ia3688a2fc0334d32d89f04d114242d39bdc25f0e
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-xrun_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh
index 12ed568..264d3c0 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -135,7 +135,7 @@ function run_pep8 {
# NOTE(heckj): E125, E126 are being ignored matching other openstack projects
# for pep 1.3.3 due to relatively arbitrary line indentation rulings
${wrapper} pep8 --repeat --show-pep8 --show-source \
- --ignore=E125,E126 --exclude=.venv,.tox,dist,doc \
+ --ignore=E125,E126 --exclude=.venv,.tox,dist,doc,build \
${srcfiles}
}