Pillow/.ci/after_success.sh
2022-02-02 15:31:20 +11:00

10 lines
177 B
Bash
Executable File

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