Pillow/.ci/after_success.sh

20 lines
357 B
Bash
Raw Normal View History

2017-01-19 18:54:54 +03:00
#!/bin/bash
# gather the coverage data
2020-01-24 14:36:49 +03:00
pip3 install codecov
if [[ $MATRIX_DOCKER ]]; then
coverage xml --ignore-errors
else
coverage xml
fi
2019-12-30 12:44:15 +03:00
2019-11-20 15:00:59 +03:00
if [[ $TRAVIS ]]; then
codecov
fi
2017-01-19 18:54:54 +03:00
2020-01-06 11:45:53 +03:00
if [ "$TRAVIS_PYTHON_VERSION" == "3.8" ]; then
2017-11-08 15:19:56 +03:00
# Coverage and quality reports on just the latest diff.
depends/diffcover-install.sh
depends/diffcover-run.sh
fi