From 1f01d30983e3a67a146308ff8766f057bc5b7958 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Thu, 20 Dec 2012 21:43:41 -0500 Subject: shorten pep8 output This removes the PEP8 output that describes in detail how to fix each problem. It makes pep8 review so long that the earliest lines scroll out of the scrollback buffer before they can even be read. With this change, each violation is on line long, which is much more readable. Change-Id: I0d8cc64fd6027419754732e314c047b3775a121c --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run_tests.sh') diff --git a/run_tests.sh b/run_tests.sh index 5dc6de4d..442b8ef8 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -113,7 +113,7 @@ function run_pep8 { ignore="$ignore_scripts,$ignore_files,$ignore_dirs" srcfiles="." # Just run PEP8 in current environment - ${wrapper} pep8 --repeat --show-pep8 --show-source \ + ${wrapper} pep8 --repeat --show-source \ --exclude=${ignore} ${srcfiles} | tee pep8.txt } -- cgit