From 711844abd82bdcb0f36bc0f1877fc69554eae261 Mon Sep 17 00:00:00 2001 From: Charith Ellawala Date: Sat, 9 Sep 2023 10:35:05 +0100 Subject: [PATCH] chore(ci): Increase timeout for client tests (#1793) The GH runners have gotten slower recently and lots of tests fail due to timeouts. Signed-off-by: Charith Ellawala --- client/client_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/client_test.go b/client/client_test.go index 2e6d06bd5..75daf5861 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -28,8 +28,8 @@ const ( adminPassword = "cerbosAdmin" readyTimeout = 90 * time.Second - readyPollInterval = 100 * time.Millisecond - healthCheckTimeout = 80 * time.Millisecond + readyPollInterval = 120 * time.Millisecond + healthCheckTimeout = 100 * time.Millisecond ) func TestClient(t *testing.T) {