summaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
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 24f0e3a..b68393a 100755
--- a/run.sh
+++ b/run.sh
@@ -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