From 2996e945f850f651d1240401bbe40076253095e2 Mon Sep 17 00:00:00 2001 From: Mykola Polonskyi Date: Tue, 29 Oct 2024 18:20:36 +0200 Subject: [PATCH] Increase timeout for integration tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4fd93cce4a3e8..42b3c1bafb118 100644 --- a/Makefile +++ b/Makefile @@ -173,7 +173,7 @@ test-go-unit: ## Run unit tests for backend with flags. .PHONY: test-go-integration test-go-integration: ## Run integration tests for backend with flags. @echo "test backend integration tests" - $(GO) test -count=1 -run "^TestIntegration" -covermode=atomic -timeout=5m $(GO_INTEGRATION_TESTS) + $(GO) test -count=1 -run "^TestIntegration" -covermode=atomic -timeout=10m $(GO_INTEGRATION_TESTS) .PHONY: test-go-integration-alertmanager test-go-integration-alertmanager: ## Run integration tests for the remote alertmanager (config taken from the mimir_backend block).