Skip to content

Commit

Permalink
Merge pull request scikit-learn#3145 from ogrisel/travis-coveralls
Browse files Browse the repository at this point in the history
[MRG] MAINT: ignore coveralls failures
  • Loading branch information
ogrisel committed May 12, 2014
2 parents 9d18b3b + f097dd1 commit 0d1bdea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ env:
install: source continuous_integration/install.sh
script: bash continuous_integration/test_script.sh
after_success:
- if [[ "$COVERAGE" == "true" ]]; then coveralls; fi
# Ignore coveralls failures as the coveralls server is not very reliable
# but we don't want travis to report a failure in the github UI just
# because the coverage report failed to be published.
- if [[ "$COVERAGE" == "true" ]]; then coveralls || echo "failed"; fi
cache: apt

0 comments on commit 0d1bdea

Please sign in to comment.