pylint/travis trouble

This commit is contained in:
Daan Hoogland 2021-02-11 13:21:49 +00:00
parent e589b68077
commit f4c9be5bbd
1 changed files with 3 additions and 3 deletions

View File

@ -31,10 +31,10 @@ then
fi
echo "Running pylint to check systemvm/python code for errors"
python --verion
python --version
pyenv versions
python -m pylint --disable=R,C,W *.py
python -m pylint --disable=R,C,W `find ../debian -name \*.py`
pylint --disable=R,C,W *.py
pylint --disable=R,C,W `find ../debian -name \*.py`
if [ $? -gt 0 ]
then
echo "pylint failed, please check your code"