From 0b42a421ab5c4024d3bdd4ee7ecd118e55a3b384 Mon Sep 17 00:00:00 2001 From: Christie Wilson Date: Fri, 19 Apr 2019 15:19:39 -0700 Subject: [PATCH] =?UTF-8?q?Make=20first=20example=20of=20running=20e2e=20t?= =?UTF-8?q?ests=20include=20longer=20timeout=20=E2=8F=B1=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I foolishly tried to use the example at the top of the test README when I was trying to run the timeout tests (for the #731 investigation) and I was sad when it failed b/c the default timeout was too short. This is the timeout we are using when running CI anyway! --- test/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/README.md b/test/README.md index 8f4b171ee7d..a38f79fc89a 100644 --- a/test/README.md +++ b/test/README.md @@ -10,7 +10,7 @@ ko apply -f ./config/ go test ./... # Integration tests (against your current kube cluster) -go test -v -count=1 -tags=e2e ./test +go test -v -count=1 -tags=e2e -timeout=20m ./test ``` ## Unit tests