added more ignores to check-manifest

This commit is contained in:
wiredfool 2016-01-31 15:03:40 +00:00
parent 1f97f25ae1
commit 878bd8a03b

View File

@ -47,7 +47,7 @@ script:
- if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then coverage run --append --include=PIL/* selftest.py; fi
- if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then coverage run --append --include=PIL/* -m nose -vx Tests/test_*.py; fi
- check-manifest --ignore "depends/*"
- check-manifest --ignore "depends/*,.coveragerc,.editorconfig,*.yml,*.yaml,tox.ini"
# Sphinx
- make install
- pushd docs; make html; make linkcheck; popd
@ -68,7 +68,7 @@ after_success:
- travis_retry pip install pep8 pyflakes
- pep8 --statistics --count PIL/*.py
- pep8 --statistics --count Tests/*.py
- pep8 --statistics --count Tests/*.py
- pyflakes *.py | tee >(wc -l)
- pyflakes PIL/*.py | tee >(wc -l)
- pyflakes Tests/*.py | tee >(wc -l)