diff options
author | Tyler Baker <tyler.baker@linaro.org> | 2013-10-25 12:26:54 -0700 |
---|---|---|
committer | Tyler Baker <tyler.baker@linaro.org> | 2013-10-25 12:26:54 -0700 |
commit | 7073f16fc1a42a05946e04b9cbf8aa3b6a7cb471 (patch) | |
tree | 717a33d03072f93c77ca09a50403f7b21061be26 | |
parent | 77942017b48ba1651114208313e2b5ee89150677 (diff) | |
download | lava-pep8-7073f16fc1a42a05946e04b9cbf8aa3b6a7cb471.tar.gz |
Fix a bit of formatting.
Signed-off-by: Tyler Baker <tyler.baker@linaro.org>
-rwxr-xr-x | run.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -45,13 +45,13 @@ function pep8_check () if [[ -s $WORKSPACE/pep8 ]] then - echo "* Test Failed: PEP8 (pep8 --ignore E501)" >> $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 + echo "* Please see the $BUILD_URLconsole for verbose PEP8 output" >> $WORKSPACE/results else - echo "* Test Passed: PEP8 (pep8 --ignore E501)" >> $WORKSPACE/results + echo "* Test Passed: PEP8 (pep8 --ignore E501 .)" >> $WORKSPACE/results fi } |