From fd018fa759b7a788121a2bbc8c0b70888d0f3c8b Mon Sep 17 00:00:00 2001 From: David Dworken Date: Mon, 4 Sep 2023 18:57:00 -0700 Subject: [PATCH] Increase number of retries for testTui/search since that method appears to be the flakiest on github actions --- client/client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client_test.go b/client/client_test.go index 27c0e2a..1d7697b 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -162,7 +162,7 @@ func TestParam(t *testing.T) { } runTestsWithRetries(t, "testControlR/offline/bash", func(t testing.TB) { testControlR(t, bashTester{}, "bash", Offline) }) runTestsWithRetries(t, "testControlR/fish", func(t testing.TB) { testControlR(t, bashTester{}, "fish", Online) }) - runTestsWithRetries(t, "testTui/search", testTui_search) + runTestsWithExtraRetries(t, "testTui/search", testTui_search, 7) runTestsWithRetries(t, "testTui/general", testTui_general) runTestsWithRetries(t, "testTui/scroll", testTui_scroll) runTestsWithRetries(t, "testTui/resize", testTui_resize)