src directories for pyflakes/pycodestyle

This commit is contained in:
wiredfool 2017-12-28 10:18:20 +00:00
parent cc35bd70bc
commit 0474d9dd0c

View File

@ -17,10 +17,10 @@ codecov
if [ "$DOCKER" == "" ]; then
pip install pyflakes pycodestyle
pyflakes *.py | tee >(wc -l)
pyflakes PIL/*.py | tee >(wc -l)
pyflakes *.py | tee >(wc -l)
pyflakes src/PIL/*.py | tee >(wc -l)
pyflakes Tests/*.py | tee >(wc -l)
pycodestyle --statistics --count PIL/*.py
pycodestyle --statistics --count src/PIL/*.py
pycodestyle --statistics --count Tests/*.py
fi