Pillow/.travis/script.sh
2019-10-07 14:30: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" == "3.7" ]; then make doccheck; fi