Pillow/.ci/after_success.sh

10 lines
178 B
Bash
Raw Normal View History

2017-01-19 18:54:54 +03:00
#!/bin/bash
# gather the coverage data
python3 -m pip install coverage
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