From c84daff5413c45fb9e87fa5dbb7ae228564cfd2f Mon Sep 17 00:00:00 2001 From: iphydf Date: Wed, 10 Jan 2018 14:34:44 +0000 Subject: [PATCH] Increase test retries to 10 (basically infinite). This basically means: try until you run out of time (50 minutes on Travis). On Linux, we really want the tests to pass, so there is no point in limiting the number of retries. On windows, we don't retry, on FreeBSD it's limited to 1. --- other/travis/env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other/travis/env.sh b/other/travis/env.sh index aeb00c82a..b0ccda624 100644 --- a/other/travis/env.sh +++ b/other/travis/env.sh @@ -11,7 +11,7 @@ export CMAKE_EXTRA_FLAGS="-DERROR_ON_WARNING=ON -DBUILD_NTOX=ON" export MAKE=make BUILD_DIR=_build -MAX_TEST_RETRIES=3 +MAX_TEST_RETRIES=10 # Workaround for broken Travis image. export TERM=xterm