From a0f90721d9b83b1f51a615ce3ac3e2a9ac1c4ccf Mon Sep 17 00:00:00 2001 From: Dimitrios Siganos Date: Fri, 30 Apr 2021 02:44:25 +0100 Subject: [PATCH] Do not repeat core_test in CI Currently we repeat core_test up to 10 times, in the hope that it succeeds. But that way, we are hiding problems. We should not hide problems, we should fix them instead. I am leaving the loop in the script but simply requesting one iteration only. If we had a need to repeat tests then it is possible that we may have that need again someday. --- ci/test.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ci/test.sh b/ci/test.sh index 10a24003..1982c126 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -47,11 +47,7 @@ run_tests() { TIMEOUT_TIME_ARG="" fi - if [ "$(date +%s)" -lt 1625057999 ]; then # June 30 2021 23:59:59 UTC - tries=(_initial_ 1 2 3 4 5 6 7 8 9) - else - tries=(_initial_) - fi + tries=(_initial_) for try in "${tries[@]}"; do if [ "${try}" != '_initial_' ]; then