From 7731e456151337a2830736115396d023c8188884 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 23 Sep 2019 20:57:43 +0200 Subject: [PATCH] ci: codecov: use 6 retries with curl This should result in retries of 1+2+4+8+16+32 = 63s. Ref: https://github.com/pytest-dev/pytest/pull/5869#issuecomment-534235437 --- scripts/report-coverage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/report-coverage.sh b/scripts/report-coverage.sh index 500d217f053..7fdeda46404 100755 --- a/scripts/report-coverage.sh +++ b/scripts/report-coverage.sh @@ -13,5 +13,5 @@ fi python -m coverage combine python -m coverage xml python -m coverage report -m -curl -S -L --retry 3 -s https://codecov.io/bash -o codecov-upload.sh +curl -S -L --retry 6 -s https://codecov.io/bash -o codecov-upload.sh bash codecov-upload.sh -Z -X fix -f coverage.xml