mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
11 lines
213 B
Bash
Executable File
11 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
python -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term Tests
|
|
|
|
# Docs
|
|
if [ "$TRAVIS_PYTHON_VERSION" == "3.8" ] && [ "$TRAVIS_CPU_ARCH" == "amd64" ]; then
|
|
make doccheck
|
|
fi
|