Pillow/.travis/script.sh

14 lines
219 B
Bash
Raw Normal View History

2017-01-19 18:54:54 +03:00
#!/bin/bash
set -e
coverage erase
make clean
make install-coverage
2017-01-19 18:54:54 +03:00
python selftest.py
2019-06-29 08:47:46 +03:00
python -m pytest -v -x --cov PIL --cov-report term Tests
2017-01-19 18:54:54 +03:00
# Docs
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ]; then make doccheck; fi