Pillow/.ci/after_success.sh
2023-04-12 18:52:44 +03:00

10 lines
178 B
Bash
Executable File

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