Pillow/.travis/test.sh

9 lines
151 B
Bash
Raw Normal View History

2017-01-19 18:54:54 +03:00
#!/bin/bash
set -e
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
2019-09-26 15:12:28 +03:00
if [ "$TRAVIS_PYTHON_VERSION" == "3.7" ]; then make doccheck; fi