Pillow/.ci/after_success.sh
2020-12-19 21:57:32 +02:00

10 lines
145 B
Bash
Executable File

#!/bin/bash
# gather the coverage data
pip3 install codecov
if [[ $MATRIX_DOCKER ]]; then
coverage xml --ignore-errors
else
coverage xml
fi