hosts/ci/lint.sh

11 lines
219 B
Bash
Raw Normal View History

2017-06-29 05:51:37 +02:00
#!/bin/bash
echo "Linting repository..."
source activate hosts
if [ "$PYTHON_VERSION" = "2.7" ]; then
echo "Skipping flake8 because it is broken on Python $PYTHON_VERSION"
else
flake8 --max-line-length 120
fi