mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 13:16:52 +03:00
9 lines
151 B
Bash
Executable File
9 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
python -m pytest -v -x --cov PIL --cov-report term Tests
|
|
|
|
# Docs
|
|
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ]; then make doccheck; fi
|