From 28f0dd425f151695420a3dee54362576c9d5ea3d Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Mon, 30 Jan 2012 20:39:20 -0800 Subject: [PATCH] Simplify pep8 output to one line per violation Change-Id: Ia1df3d1fbdd21b1b8884848d27c3a2a567b51943 --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index a8c3569a..e21203c7 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -50,7 +50,7 @@ function run_tests { function run_pep8 { echo "Running pep8 ..." - PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --repeat --show-pep8 --show-source" + PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --repeat" PEP8_INCLUDE="bin/* glance tools setup.py run_tests.py" ${wrapper} pep8 $PEP8_OPTIONS $PEP8_INCLUDE }