From c123064afcf186151c29a000266cc1e7e7a89ef0 Mon Sep 17 00:00:00 2001 From: spring2maz Date: Sun, 23 Sep 2018 10:18:25 +0200 Subject: [PATCH] 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. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 2557513d4..8960ab7c7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,8 @@ script: - make rebar-eunit - make rebar-ct - make rebar-cover + +after_success: - make coveralls sudo: false