From aee07cbbf55f6587e8314cb830408d246bf9ea9a Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Fri, 20 Feb 2026 16:21:34 +0100 Subject: [PATCH] CI tests: fix infinite loop Fixed 261df79f which added continue in a loop _prior_ to incrementing the loop variable. --- .github/scripts/run_scheduled_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/run_scheduled_tests.sh b/.github/scripts/run_scheduled_tests.sh index 8ff4eb1d8..6c208ca36 100755 --- a/.github/scripts/run_scheduled_tests.sh +++ b/.github/scripts/run_scheduled_tests.sh @@ -86,6 +86,8 @@ while [ $i -lt $test_count ]; do eval "args=\$test_${i}_args" eval "opts=\$test_${i}_opts" + i=$((i + 1)) + exec=$run_uv tool=uv if expr -- "$opts" : '.*run_reflector' >/dev/null; then @@ -125,7 +127,5 @@ while [ $i -lt $test_count ]; do fi fi - - i=$((i + 1)) done