From 3f37155af042dbd29235e16b811761e8922832ee Mon Sep 17 00:00:00 2001 From: Artur Sawicki Date: Wed, 7 Feb 2024 14:30:27 +0100 Subject: [PATCH] Bump timeouts for integration tests --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f424331119..cde2406284 100644 --- a/Makefile +++ b/Makefile @@ -67,10 +67,10 @@ test: test-client ## run unit and integration tests go test -v -cover -timeout=30m ./... test-acceptance: ## run acceptance tests - TF_ACC=1 go test -run "^TestAcc_" -v -cover -timeout=30m ./... + TF_ACC=1 go test -run "^TestAcc_" -v -cover -timeout=45m ./... test-integration: ## run SDK integration tests - go test -run "^TestInt_" -v -cover -timeout=20m ./... + go test -run "^TestInt_" -v -cover -timeout=30m ./... test-architecture: ## check architecture constraints between packages go test ./pkg/architests/... -v