From 14085c50d3c45048580f49959d062ceebf19b023 Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Tue, 15 Jun 2021 12:24:31 -0700 Subject: [PATCH] bump KUBE_TIMEOUT to 180s observed some timeouts with 170s still --- hack/make-rules/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/make-rules/test.sh b/hack/make-rules/test.sh index 06c354df3f8..21cd65c4922 100755 --- a/hack/make-rules/test.sh +++ b/hack/make-rules/test.sh @@ -62,7 +62,7 @@ kube::test::find_dirs() { # TODO: This timeout should really be lower, this is a *long* time to test one # package, however pkg/api/testing in particular will fail with a lower timeout # currently. We should attempt to lower this over time. -KUBE_TIMEOUT=${KUBE_TIMEOUT:--timeout=170s} +KUBE_TIMEOUT=${KUBE_TIMEOUT:--timeout=180s} KUBE_COVER=${KUBE_COVER:-n} # set to 'y' to enable coverage collection KUBE_COVERMODE=${KUBE_COVERMODE:-atomic} # The directory to save test coverage reports to, if generating them. If unset,