From 480d642efffd4cd0c83e22c6ff08f1ef5b280d20 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sun, 27 Aug 2017 19:07:02 -0700 Subject: [PATCH] travis: Add a networking retry for codecov installation. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ba472b640c..db5381e868 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,8 @@ install: - mispipe "mv ~/.nvm ~/.travis-nvm-disabled" ts # Install codecov, the library for the code coverage reporting tool we use - - mispipe "pip install codecov" ts + # With a retry to minimize impact of transient networking errors. + - mispipe "pip install codecov" ts || mispipe "pip install codecov" ts # This is the main setup job for the test suite - mispipe "tools/travis/setup-$TEST_SUITE" ts