mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +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
|
codecov
|
||||||
|
|
||||||
if [ "$DOCKER" == "" ]; then
|
if [ "$DOCKER" == "" ]; then
|
||||||
pip install pep8 pyflakes
|
pip install pyflakes pycodestyle
|
||||||
pep8 --statistics --count PIL/*.py
|
|
||||||
pep8 --statistics --count Tests/*.py
|
|
||||||
pyflakes *.py | tee >(wc -l)
|
pyflakes *.py | tee >(wc -l)
|
||||||
pyflakes PIL/*.py | tee >(wc -l)
|
pyflakes PIL/*.py | tee >(wc -l)
|
||||||
pyflakes Tests/*.py | tee >(wc -l)
|
pyflakes Tests/*.py | tee >(wc -l)
|
||||||
|
pycodestyle --statistics --count PIL/*.py
|
||||||
|
pycodestyle --statistics --count Tests/*.py
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ] && [ "$DOCKER" == "" ]; then
|
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ] && [ "$DOCKER" == "" ]; then
|
||||||
|
|
|
@ -14,7 +14,7 @@ MarkupSafe
|
||||||
nose
|
nose
|
||||||
nose-cov
|
nose-cov
|
||||||
olefile
|
olefile
|
||||||
pep8
|
pycodestyle
|
||||||
pyflakes
|
pyflakes
|
||||||
Pygments
|
Pygments
|
||||||
pyroma
|
pyroma
|
||||||
|
|
Loading…
Reference in New Issue
Block a user