Skip to content

Commit 3b1070e

Browse files
committed
semi-weekly test: increase dfl timeo to 10
In Win `uv.exe -v` timeouted. But first run in Windows takes usually more time (maybe Windows Defender scan or so). So increased the timeout to 10 seconds - not just because of this but in these places where UG should run some time, it may be useful to run a bit longer. The tests take just a negligible time, anyaways.
1 parent d982d93 commit 3b1070e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/run_scheduled_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ while [ $i -lt $test_count ]; do
101101
fi
102102
fi
103103

104-
timeout=5
104+
timeout=10
105105
echo "Starting: \"timeout $timeout $exec $args\""
106-
timeout -k 10 $timeout $exec $args
106+
timeout -k $((timeout+5)) $timeout $exec $args
107107
rc=$?
108108
echo "Finished: \"timeout $timeout $exec $args\" with RC $rc"
109109

0 commit comments

Comments
 (0)