diff options
author | Tyler Baker <tyler.baker@linaro.org> | 2013-10-25 12:25:45 -0700 |
---|---|---|
committer | Tyler Baker <tyler.baker@linaro.org> | 2013-10-25 12:25:45 -0700 |
commit | 77942017b48ba1651114208313e2b5ee89150677 (patch) | |
tree | 639fc02e72ad3e510c546adabdeceff45b730676 | |
parent | 576745a069929ff88cd0a5986d4c8b132aa66751 (diff) | |
download | lava-pep8-77942017b48ba1651114208313e2b5ee89150677.tar.gz |
Fix pep8 args.
Signed-off-by: Tyler Baker <tyler.baker@linaro.org>
-rwxr-xr-x | run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,14 +41,14 @@ function pep8_check () { cd $WORKSPACE/$LAVA_PROJECT - pep8 --ignore E501 >> $WORKSPACE/pep8 + pep8 --ignore E501 . >> $WORKSPACE/pep8 if [[ -s $WORKSPACE/pep8 ]] then 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 + 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 (pep8 --ignore E501)" >> $WORKSPACE/results |