From e2f4cd5a5333fcd3c26700aefe7faa62b3b0a068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20H=C3=B6rl?= Date: Fri, 24 Nov 2017 21:05:33 +0000 Subject: [PATCH] Allow more time to bring up the fixtures --- pkg/framework/test/integration/integration_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/framework/test/integration/integration_test.go b/pkg/framework/test/integration/integration_test.go index 52d180ac1..324fed4af 100644 --- a/pkg/framework/test/integration/integration_test.go +++ b/pkg/framework/test/integration/integration_test.go @@ -27,11 +27,11 @@ var _ = Describe("Integration", func() { Eventually(func() bool { return isSomethingListeningOnPort(2379) - }, 5*time.Second).Should(BeTrue(), "Expected Etcd to listen on 2379") + }, 25*time.Second).Should(BeTrue(), "Expected Etcd to listen on 2379") Eventually(func() bool { return isSomethingListeningOnPort(8080) - }, 5*time.Second).Should(BeTrue(), "Expected APIServer to listen on 8080") + }, 25*time.Second).Should(BeTrue(), "Expected APIServer to listen on 8080") err = fixtures.Stop() Expect(err).NotTo(HaveOccurred(), "Expected fixtures to stop successfully")