exclude venv directories from local pep8
make it more straight forward to run local pep8
by excluding any venv directories in your tree
Change-Id: Iecd0cb720a2254ff47c7d8209dd5a607e4d2fa93
diff --git a/run_tests.sh b/run_tests.sh
index 680f79e..670f5ad 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -43,7 +43,7 @@
function run_pep8 {
echo "Running pep8 ..."
- PEP8_EXCLUDE="etc,include,tools"
+ PEP8_EXCLUDE="etc,include,tools,*venv"
PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --repeat"
PEP8_INCLUDE="."
pep8 $PEP8_OPTIONS $PEP8_INCLUDE