Pillow/.ci/after_success.sh

10 lines
145 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