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