mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-25 00:00:34 +03:00
Merge pull request #2844 from hugovk/pep8-to-pycodestyle
pep8 is now pycodestyle
This commit is contained in:
commit
a3b15c4a5f
|
@ -16,19 +16,19 @@ 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
|
pyflakes *.py | tee >(wc -l)
|
||||||
pep8 --statistics --count Tests/*.py
|
pyflakes PIL/*.py | tee >(wc -l)
|
||||||
pyflakes *.py | tee >(wc -l)
|
pyflakes Tests/*.py | tee >(wc -l)
|
||||||
pyflakes PIL/*.py | tee >(wc -l)
|
pycodestyle --statistics --count PIL/*.py
|
||||||
pyflakes Tests/*.py | tee >(wc -l)
|
pycodestyle --statistics --count Tests/*.py
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ] && [ "$DOCKER" == "" ]; then
|
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ] && [ "$DOCKER" == "" ]; then
|
||||||
# Coverage and quality reports on just the latest diff.
|
# Coverage and quality reports on just the latest diff.
|
||||||
# (Installation is very slow on Py3, so just do it for Py2.)
|
# (Installation is very slow on Py3, so just do it for Py2.)
|
||||||
depends/diffcover-install.sh
|
depends/diffcover-install.sh
|
||||||
depends/diffcover-run.sh
|
depends/diffcover-run.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# after_all
|
# after_all
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user