From 1de4f1af2e31c1387a7363c6e170712e0b34f4d4 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 20 Sep 2021 10:32:00 +0300 Subject: [PATCH] ci: reduce chance of spurious go_wait_option_test.v failures by retrying it 3 times --- vlib/v/tests/go_wait_option_test.v | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vlib/v/tests/go_wait_option_test.v b/vlib/v/tests/go_wait_option_test.v index 80cf7e2e96..1979d8fb82 100644 --- a/vlib/v/tests/go_wait_option_test.v +++ b/vlib/v/tests/go_wait_option_test.v @@ -1,3 +1,5 @@ +// vtest retry: 3 + fn f(n int) ?f64 { if n < 0 { return error('negative number')