Run medium tests three times

This commit is contained in:
2020-11-27 19:26:03 -06:00
parent 356b2b06e4
commit 849212fd2f

View File

@@ -232,7 +232,10 @@ case "$1" in
medium-tests)
shift; parse_opts $*
run_tests medium
for attempt in {1..3}; do
(run_tests medium) && exit 0
done
exit 1
;;
large-tests)