Pillow/.travis/script.sh
2017-12-28 14:51:55 +00:00

16 lines
328 B
Bash
Executable File

#!/bin/bash
set -e
coverage erase
make clean
make install-coverage
python selftest.py
python -m pytest -vx --cov PIL --cov-report term Tests
pushd /tmp/check-manifest && check-manifest --ignore ".coveragerc,.editorconfig,*.yml,*.yaml,tox.ini" && popd
# Docs
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ]; then make doccheck; fi