From fd66b66a86e2e3e8d134cafdcb4b1cb080abe0b2 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Mon, 9 Nov 2020 19:26:27 +0100 Subject: [PATCH] tests: Retry interactive tests once We used to have this, it helps with resource constrained CI systems --- tests/interactive.fish | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/interactive.fish b/tests/interactive.fish index df93be0d5..54f78beb6 100644 --- a/tests/interactive.fish +++ b/tests/interactive.fish @@ -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