Skip to content

Commit aee07cb

Browse files
committed
CI tests: fix infinite loop
Fixed 261df79 which added continue in a loop _prior_ to incrementing the loop variable.
1 parent e5a70fd commit aee07cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/run_scheduled_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ while [ $i -lt $test_count ]; do
8686
eval "args=\$test_${i}_args"
8787
eval "opts=\$test_${i}_opts"
8888

89+
i=$((i + 1))
90+
8991
exec=$run_uv
9092
tool=uv
9193
if expr -- "$opts" : '.*run_reflector' >/dev/null; then
@@ -125,7 +127,5 @@ while [ $i -lt $test_count ]; do
125127
fi
126128

127129
fi
128-
129-
i=$((i + 1))
130130
done
131131

0 commit comments

Comments
 (0)