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