Pillow/.ci/test.sh

11 lines
213 B
Bash
Raw Normal View History

2017-01-19 18:54:54 +03:00
#!/bin/bash
set -e
2020-01-27 04:30:27 +03:00
python -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term Tests
2017-01-19 18:54:54 +03:00
# Docs
if [ "$TRAVIS_PYTHON_VERSION" == "3.8" ] && [ "$TRAVIS_CPU_ARCH" == "amd64" ]; then
make doccheck
fi