Skip flake8 check on Python on 2.7

flake8 is broken with Python 2.7, but
we have all other builds linting, so
not an issue for us.
This commit is contained in:
gfyoung 2018-08-03 10:51:08 -07:00
parent 7a2ecfccff
commit a2a7d12448
No known key found for this signature in database
GPG Key ID: ED94D6B8AA304272

View File

@ -3,4 +3,8 @@
echo "Linting repository..."
source activate hosts
flake8 --max-line-length 120
if [ "$PYTHON_VERSION" = "2.7" ]; then
echo "Skipping flake8 because it is broken on Python $PYTHON_VERSION"
else
flake8 --max-line-length 120
fi