From 7f5d9a4b4e6712bc935291516e1a953bd5ee7121 Mon Sep 17 00:00:00 2001 From: Gabriel Pettier Date: Mon, 21 May 2018 17:50:35 +0200 Subject: [PATCH] use travis_retry for coveralls, in case it fails randomly --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d7408d37f..353a73f80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -107,7 +107,7 @@ script: make test; fi; if [ "${COVERALLS}" == "true" ] && [ "${TRAVIS_BRANCH}" == "master" ]; then - coveralls; + travis_retry coveralls; fi; if [ "${RUN}" == "pep8" ]; then make style;