From 203d51f0e447c52a867c46c67eb39c363db47323 Mon Sep 17 00:00:00 2001 From: Rick Harris Date: Mon, 9 Apr 2012 20:43:50 +0000 Subject: Remove unecessary --repeat option for pep8. Fixes bug 977489 --repeat became the default in 0.7; since we're now requiring 1.0 or above, this can go away. Change-Id: I85ee8ab274594ce96ece6610247dfd8a6f082af5 --- run_tests.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/run_tests.sh b/run_tests.sh index 37f286e3a..4e86d0c81 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -112,13 +112,12 @@ function run_pep8 { echo "Running pep8 ..." # Just run PEP8 in current environment # - pep8_opts="--repeat" - ${wrapper} pep8 ${pep8_opts} ${srcfiles} + ${wrapper} pep8 ${srcfiles} } function run_hacking { echo "Running hacking compliance testing..." - hacking_opts="--ignore=E202 --repeat" + hacking_opts="--ignore=E202" ${wrapper} python tools/hacking.py ${hacking_opts} ${srcfiles} } -- cgit