Pillow/.ci/after_success.sh

10 lines
177 B
Bash
Raw Normal View History

2017-01-19 18:54:54 +03:00
#!/bin/bash
# gather the coverage data
2022-01-16 06:09:12 +03:00
python3 -m pip install codecov
2020-01-24 14:36:49 +03:00
if [[ $MATRIX_DOCKER ]]; then
python3 -m coverage xml --ignore-errors
2020-01-24 14:36:49 +03:00
else
python3 -m coverage xml
2020-01-24 14:36:49 +03:00
fi