summaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
authorTyler Baker <tyler.baker@linaro.org>2013-10-25 12:12:17 -0700
committerTyler Baker <tyler.baker@linaro.org>2013-10-25 12:12:17 -0700
commit23c89c98ce23f1a5993357a3c503b29b651e1264 (patch)
treee2cc5478c0b251cf6ece5c77c200f7cf489a88e0 /run.sh
parent0533670dac7c7bd9cd99a320fe6c6b02bce0ad11 (diff)
Better messages.
Signed-off-by: Tyler Baker <tyler.baker@linaro.org>
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run.sh b/run.sh
index 2519dc5..fe10503 100755
--- a/run.sh
+++ b/run.sh
@@ -45,13 +45,13 @@ function pep8_check ()
if [[ -s $WORKSPACE/pep8 ]]
then
- echo "* PEP8 Check Failed:" >> $WORKSPACE/results
+ echo "* Test Failed: 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
+ echo "* Test Passed: PEP8" >> $WORKSPACE/results
fi
}