Upload coveralls data only when sucess

This is done by moving coveralls send to after_success section
in .travis.yml.
having it in after_success should not make the build fail if
coveralls send fails due to server being overloaded etc.
This commit is contained in:
spring2maz 2018-09-23 10:18:25 +02:00 committed by Feng Lee
parent 0b0ef9bd54
commit c123064afc
1 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,8 @@ script:
- make rebar-eunit - make rebar-eunit
- make rebar-ct - make rebar-ct
- make rebar-cover - make rebar-cover
after_success:
- make coveralls - make coveralls
sudo: false sudo: false