mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
ea5b30d212
Remove duplicate run of selftest.py
13 lines
200 B
Bash
Executable File
13 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
coverage erase
|
|
make clean
|
|
make install-coverage
|
|
|
|
python -m pytest -v -x --cov PIL --cov-report term Tests
|
|
|
|
# Docs
|
|
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ]; then make doccheck; fi
|