From 8480d74fa17370fec740fe710f07b1ebc64e2ec2 Mon Sep 17 00:00:00 2001 From: Rick Harris Date: Wed, 14 Dec 2011 20:31:16 -0600 Subject: [PATCH] Making pep8 output less verbose. Fixes bug #904559 Change-Id: I078b060483890bf8bfc9b78d3174370dea4d6bbc --- run_tests.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/run_tests.sh b/run_tests.sh index 0b2acbc00339..112a55ca564e 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"