Merge pull request #2844 from hugovk/pep8-to-pycodestyle

pep8 is now pycodestyle
This commit is contained in:
Hugo 2017-11-08 19:15:05 +02:00 committed by GitHub
commit a3b15c4a5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 17 deletions

View File

@ -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

View File

@ -1,11 +1,7 @@
# Development, documentation & testing requirements. # Development, documentation & testing requirements.
-e . -e .
Babel
Jinja2
MarkupSafe
Pygments
Sphinx
alabaster alabaster
Babel
check-manifest check-manifest
cov-core cov-core
coverage coverage
@ -13,14 +9,18 @@ coveralls
docopt docopt
docutils docutils
jarn.viewdoc jarn.viewdoc
nose-cov Jinja2
MarkupSafe
nose nose
nose-cov
olefile olefile
pep8 pycodestyle
pyflakes pyflakes
Pygments
pyroma pyroma
pytz pytz
requests requests
six six
snowballstemmer snowballstemmer
Sphinx
sphinx-rtd-theme sphinx-rtd-theme