From fbaa4639a6a451a013c5aec62a78cf9d6678b575 Mon Sep 17 00:00:00 2001 From: Nicola Ferraro Date: Thu, 19 Mar 2020 01:00:45 +0100 Subject: [PATCH] Fix #1333: increase test timeout --- script/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script/Makefile b/script/Makefile index 856dc53655..570a90a480 100644 --- a/script/Makefile +++ b/script/Makefile @@ -125,12 +125,12 @@ test: build go test ./... test-integration: build - STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 30m -v ./e2e -tags=integration - #go test -timeout 30m -v ./e2e -tags=integration + STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 60m -v ./e2e -tags=integration + #go test -timeout 60m -v ./e2e -tags=integration test-knative: build - STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 30m -v ./e2e -tags=knative - #go test -timeout 30m -v ./e2e -tags=knative + STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 60m -v ./e2e -tags=knative + #go test -timeout 60m -v ./e2e -tags=knative build-kamel: go build $(GOFLAGS) -o kamel ./cmd/kamel/*.go