From 4e8f1fd13e3251ed2901fb1c241dbe5f6e627ebe Mon Sep 17 00:00:00 2001 From: Chi Cao Minh Date: Thu, 22 Aug 2019 10:40:28 -0700 Subject: [PATCH] Add coveralls parallel builds webhook Since we use parallel builds for unit tests, follow the instructions for properly merging the results on coveralls: https://docs.coveralls.io/parallel-build-webhook --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 9c70d2faad4f..744dd4444d8a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,6 +27,7 @@ cache: env: global: + - COVERALLS_PARALLEL=true - DOCKER_IP=127.0.0.1 # for integration tests - MVN="mvn -B" - > # Various options to make execution of maven goals faster (e.g., mvn install) @@ -42,6 +43,9 @@ env: " - MAVEN_SKIP_TESTS="-DskipTests -Djacoco.skip=true" +notifications: + webhooks: https://coveralls.io/webhook + # Add various options to make 'mvn install' fast and skip javascript compile (-Ddruid.console.skip=true) since it is not # needed. Depending on network speeds, "mvn -q install" may take longer than the default 10 minute timeout to print any # output. To compensate, use travis_wait to extend the timeout.