From 9249a5da2765fa03e5799f82c77bed15d9bccde1 Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Tue, 30 Oct 2012 17:25:07 -0700 Subject: [PATCH] Report correct return value from pep8 check Remove the '|| true' appended to the pep8 command to allow the non-zero status to be returned properly. Fix bug 1073380. Change-Id: I1e212a9d596eb448ee7f6ac40106a05650b70473 --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 4535ba19c..5ea35388d 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -129,7 +129,7 @@ function run_pylint { function run_pep8 { echo "Running pep8 ..." - ${command_wrapper} pep8 $included_dirs || true + ${command_wrapper} pep8 $included_dirs } function run_sphinx {