mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
31 lines
756 B
Bash
Executable File
31 lines
756 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# gather the coverage data
|
|
if [[ "$MATRIX_OS" == "macOS-latest" ]]; then
|
|
brew install lcov
|
|
else
|
|
sudo apt-get -qq install lcov
|
|
fi
|
|
|
|
lcov --capture --directory . -b . --output-file coverage.info
|
|
# filter to remove system headers
|
|
lcov --remove coverage.info '/usr/*' -o coverage.filtered.info
|
|
# convert to json
|
|
sudo gem install coveralls-lcov
|
|
coveralls-lcov -v -n coverage.filtered.info > coverage.c.json
|
|
|
|
pip install codecov
|
|
coverage report
|
|
|
|
pip install coveralls-merge
|
|
coveralls-merge coverage.c.json
|
|
if [[ $TRAVIS ]]; then
|
|
codecov
|
|
fi
|
|
|
|
if [ "$TRAVIS_PYTHON_VERSION" == "3.7" ] && [ "$DOCKER" == "" ]; then
|
|
# Coverage and quality reports on just the latest diff.
|
|
depends/diffcover-install.sh
|
|
depends/diffcover-run.sh
|
|
fi
|