Pillow/.travis/script.sh
Jon Dufresne ce7c8e8bbc Remove check-manifest from .travis/script.sh
check-manifest already exists as part of the lint tox target "lint"
which is run by Travis CI. There is no need to re-run the same check as
part of each test run.
2019-07-02 18:46:31 -07:00

14 lines
219 B
Bash
Executable File

#!/bin/bash
set -e
coverage erase
make clean
make install-coverage
python selftest.py
python -m pytest -v -x --cov PIL --cov-report term Tests
# Docs
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ]; then make doccheck; fi