summaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
authorTyler Baker <tyler.baker@linaro.org>2013-10-25 12:14:18 -0700
committerTyler Baker <tyler.baker@linaro.org>2013-10-25 12:14:18 -0700
commit8821d6e70c0aaf4ba7df8b67561baa295f44163f (patch)
tree501ff57362c2f553ed7390afd1584ef4802c99ea /run.sh
parent23c89c98ce23f1a5993357a3c503b29b651e1264 (diff)
Tweak messages.
Signed-off-by: Tyler Baker <tyler.baker@linaro.org>
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/run.sh b/run.sh
index fe10503..97216b9 100755
--- a/run.sh
+++ b/run.sh
@@ -41,17 +41,17 @@ function pep8_check ()
{
cd cd $WORKSPACE/$LAVA_PROJECT
- pep8 --ignore E501 --show-source >> $WORKSPACE/pep8
+ pep8 --ignore E501 >> $WORKSPACE/pep8
if [[ -s $WORKSPACE/pep8 ]]
then
- echo "* Test Failed: PEP8" >> $WORKSPACE/results
+ echo "* Test Failed: PEP8 (pep8 --ignore E501)" >> $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 "* Test Passed: PEP8" >> $WORKSPACE/results
+ echo "* Test Passed: PEP8 (pep8 --ignore E501)" >> $WORKSPACE/results
fi
}