summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--run.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/run.sh b/run.sh
index f7a48ef..2172e40 100644
--- a/run.sh
+++ b/run.sh
@@ -46,7 +46,10 @@ function pep8_check ()
if [[ -s $WORKSPACE/pep8 ]]
then
echo "* PEP8 Check Failed:" >> $WORKSPACE/results
- sed 's/^/*/g' $WORKSPACE/pep8 >> $WORKSPACE/results
+ sed 's/^/*/g' $WORKSPACE/pep8 >> $WORKSPACE/results
+ echo "PEP8 CHECK FAILED:"
+ pep8 --ignore E501 --show-source --show-pep8
+ echo "* Please see the $BUILD_URL/console for verbose PEP8 output" >> $WORKSPACE/results
else
echo "* PEP8 Check Passed:" >> $WORKSPACE/results
fi