pep8 is now pycodestyle

This commit is contained in:
Hugo 2017-11-08 14:24:44 +02:00
parent dbde09acd0
commit 994b22d564
2 changed files with 4 additions and 4 deletions

View File

@ -16,12 +16,12 @@ coveralls-merge coverage.c.json
codecov
if [ "$DOCKER" == "" ]; then
pip install pep8 pyflakes
pep8 --statistics --count PIL/*.py
pep8 --statistics --count Tests/*.py
pip install pyflakes pycodestyle
pyflakes *.py | tee >(wc -l)
pyflakes PIL/*.py | tee >(wc -l)
pyflakes Tests/*.py | tee >(wc -l)
pycodestyle --statistics --count PIL/*.py
pycodestyle --statistics --count Tests/*.py
fi
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ] && [ "$DOCKER" == "" ]; then

View File

@ -14,7 +14,7 @@ MarkupSafe
nose
nose-cov
olefile
pep8
pycodestyle
pyflakes
Pygments
pyroma