Pillow/.travis/script.sh
Hugo ea5b30d212
Remove duplicate run of selftest.py (#3941)
Remove duplicate run of selftest.py
2019-07-03 15:06:59 +03:00

13 lines
200 B
Bash
Executable File

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