mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
15 lines
429 B
Bash
15 lines
429 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
coverage erase
|
||
|
python setup.py clean
|
||
|
CFLAGS="-coverage" python setup.py build_ext --inplace
|
||
|
|
||
|
coverage run --append --include=PIL/* selftest.py
|
||
|
coverage run --append --include=PIL/* -m nose -vx Tests/test_*.py
|
||
|
pushd /tmp/check-manifest && check-manifest --ignore ".coveragerc,.editorconfig,*.yml,*.yaml,tox.ini" && popd
|
||
|
|
||
|
# Docs
|
||
|
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ]; then make install && make doccheck; fi
|