diff options
author | antialias <antialias@leap.se> | 2012-09-17 14:45:17 -0400 |
---|---|---|
committer | antialias <antialias@leap.se> | 2012-09-17 14:45:17 -0400 |
commit | 92e192afdfcacc1f1cf8ec0713746e16f6bf9e3d (patch) | |
tree | 74bb0bb2beb40c4053c41670f1bf671597f32482 | |
parent | cfb7f5a2e9bae74dd60067a399a222d62e81da2c (diff) |
ignore pep8 errors in src/leap/_version.py because it is autogenerated.
-rwxr-xr-x | run_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh index 96121d3e..6505dd54 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -77,7 +77,7 @@ function run_pep8 { echo "Running pep8 ..." srcfiles="src/leap tests" # Just run PEP8 in current environment - pep8_opts="--ignore=E202,W602 --exclude=*_rc.py --repeat" + pep8_opts="--ignore=E202,W602 --exclude=*_rc.py,_version.py --repeat" ${wrapper} pep8 ${pep8_opts} ${srcfiles} } |