mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
10 lines
155 B
Bash
Executable File
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
|