CI tests: fix infinite loop

Fixed 261df79f which added continue in a loop _prior_ to incrementing
the loop variable.
This commit is contained in:
Martin Pulec
2026-02-20 16:21:34 +01:00
parent e5a70fd4c2
commit aee07cbbf5

View File

@@ -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