tests: Retry interactive tests once

We used to have this, it helps with resource constrained CI systems
This commit is contained in:
Fabian Homborg 2020-11-09 19:26:27 +01:00
parent 2318d037ac
commit fd66b66a86

View file

@ -68,7 +68,10 @@ if not python3 -c 'import pexpect'
end
for i in $pexpect_files_to_test
if not test_pexpect_file $i
set failed $failed $i
say yellow "Trying $i for a second time"
if not test_pexpect_file $i
set failed $failed $i
end
end
end