mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
pep8 is now pycodestyle
This commit is contained in:
parent
dbde09acd0
commit
994b22d564
|
@ -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
|
||||
|
|
|
@ -14,7 +14,7 @@ MarkupSafe
|
|||
nose
|
||||
nose-cov
|
||||
olefile
|
||||
pep8
|
||||
pycodestyle
|
||||
pyflakes
|
||||
Pygments
|
||||
pyroma
|
||||
|
|
Loading…
Reference in New Issue
Block a user