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