diff --git a/utils/travis/docker_run.sh b/utils/travis/docker_run.sh index 3db5c5054f3a..e55be765c23b 100755 --- a/utils/travis/docker_run.sh +++ b/utils/travis/docker_run.sh @@ -92,9 +92,10 @@ else exit $BUILD_RET fi - if (( SECONDS > 60*build_timeout )); then - die "Insufficient time remaining to execute unit tests. Exiting now to allow caching to occur. Please restart the job." - fi +# if (( SECONDS > 60*build_timeout )); then + if true; then + die "Insufficient time remaining to execute unit tests. Exiting now to allow caching to occur. Please restart the job." + fi # needed since bash returns the exit code of the final command executed, so a failure needs to be returned if any unit tests fail EXIT_VAL=0