Pillow/.ci/after_success.sh
2022-01-16 14:09:12 +11:00

10 lines
155 B
Bash
Executable File

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