diff options
| author | Jenkins <jenkins@review.openstack.org> | 2011-12-15 04:07:19 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2011-12-15 04:07:19 +0000 |
| commit | 548ae0bdbf70e425dd4aca65f98038c2ae65d1f4 (patch) | |
| tree | 02dde91e780c5743eaff649f07a137c189243a53 | |
| parent | 8d4208c9a171d2a26a8b1eaf9695d986f7ce7a1c (diff) | |
| parent | 8480d74fa17370fec740fe710f07b1ebc64e2ec2 (diff) | |
Merge "Making pep8 output less verbose."
| -rwxr-xr-x | run_tests.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/run_tests.sh b/run_tests.sh index 0b2acbc00..112a55ca5 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -112,9 +112,8 @@ function run_pep8 { # other than what the PEP8 tool claims. It is deprecated in Python 3, so, # perhaps the mistake was thinking that the deprecation applied to Python 2 # as well. - ${wrapper} pep8 --repeat --show-pep8 --show-source \ - --ignore=E202,W602 \ - ${srcfiles} + pep8_opts="--ignore=E202,W602 --repeat" + ${wrapper} pep8 ${pep8_opts} ${srcfiles} } NOSETESTS="python nova/testing/runner.py $noseopts $noseargs" |
