diff --git a/ci/lint.sh b/ci/lint.sh index 5d9fafe6c9064..832e1227d9752 100755 --- a/ci/lint.sh +++ b/ci/lint.sh @@ -23,6 +23,13 @@ if [ "$LINT" ]; then fi echo "Linting setup.py DONE" + echo "Linting asv_bench/benchmarks/" + flake8 asv_bench/benchmarks/ --exclude=asv_bench/benchmarks/[ghijoprst]*.py --ignore=F811 + if [ $? -ne "0" ]; then + RET=1 + fi + echo "Linting asv_bench/benchmarks/*.py DONE" + echo "Linting *.pyx" flake8 pandas --filename=*.pyx --select=E501,E302,E203,E111,E114,E221,E303,E128,E231,E126,E265,E305,E301,E127,E261,E271,E129,W291,E222,E241,E123,F403 if [ $? -ne "0" ]; then