Pillow/.travis/after_success.sh

50 lines
1.6 KiB
Bash
Raw Normal View History

2017-01-19 18:54:54 +03:00
#!/bin/bash
# gather the coverage data
sudo apt-get -qq install lcov
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
gem install coveralls-lcov
coveralls-lcov -v -n coverage.filtered.info > coverage.c.json
coverage report
2017-02-03 09:58:42 +03:00
pip install codecov
2017-01-19 18:54:54 +03:00
pip install coveralls-merge
coveralls-merge coverage.c.json
2017-02-03 09:58:42 +03:00
codecov
2017-01-19 18:54:54 +03:00
if [ "$DOCKER" == "" ]; then
2017-11-08 15:24:44 +03:00
pip install pyflakes pycodestyle
2017-11-08 15:19:56 +03:00
pyflakes *.py | tee >(wc -l)
pyflakes PIL/*.py | tee >(wc -l)
pyflakes Tests/*.py | tee >(wc -l)
2017-11-08 15:24:44 +03:00
pycodestyle --statistics --count PIL/*.py
pycodestyle --statistics --count Tests/*.py
fi
2017-01-19 18:54:54 +03:00
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ] && [ "$DOCKER" == "" ]; then
2017-11-08 15:19:56 +03:00
# Coverage and quality reports on just the latest diff.
# (Installation is very slow on Py3, so just do it for Py2.)
depends/diffcover-install.sh
depends/diffcover-run.sh
fi
2017-01-19 18:54:54 +03:00
# after_all
if [ "$TRAVIS_REPO_SLUG" = "python-pillow/Pillow" ] && [ "$TRAVIS_BRANCH" = "master" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
curl -Lo travis_after_all.py https://raw.github.com/dmakhno/travis_after_all/master/travis_after_all.py
python travis_after_all.py
export $(cat .to_export_back)
if [ "$BUILD_LEADER" = "YES" ]; then
if [ "$BUILD_AGGREGATE_STATUS" = "others_succeeded" ]; then
2017-05-09 12:18:14 +03:00
echo "All jobs succeeded! Triggering macOS build..."
2017-01-19 18:54:54 +03:00
# Trigger a macOS build at the pillow-wheels repo
./build_children.sh
else
echo "Some jobs failed"
fi
fi
2017-01-30 09:53:09 +03:00
fi