Skip to content

Commit

Permalink
Skip broken install of coveralls-merge on 2.7_with_system_site_… (#3985)
Browse files Browse the repository at this point in the history
Skip broken install of coveralls-merge on 2.7_with_system_site_packages
  • Loading branch information
hugovk committed Jul 24, 2019
2 parents b07460d + d15620a commit 99d9bd1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .travis/after_success.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ coveralls-lcov -v -n coverage.filtered.info > coverage.c.json

coverage report
pip install codecov
pip install coveralls-merge
coveralls-merge coverage.c.json
if [[ $TRAVIS_PYTHON_VERSION != "2.7_with_system_site_packages" ]]; then
# Not working here. Just skip it, it's being removed soon.
pip install coveralls-merge
coveralls-merge coverage.c.json
fi
codecov

if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ] && [ "$DOCKER" == "" ]; then
Expand Down

0 comments on commit 99d9bd1

Please sign in to comment.