From 99f7ada8e4a8b01e791ca5e488b3bf34644fdc48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Anda=20Estensen?= Date: Wed, 3 Jul 2024 15:04:41 +0200 Subject: [PATCH] Increase test timeout --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8633d383..97bc876e 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ mocks: ## generates mocks go generate ./... tests: ## runs all tests - go test -race ./... -timeout=30s + go test -race ./... -timeout=1m tests-cover: ## run all tests with test coverge go test -race ./... -coverprofile=coverage.out -covermode=atomic -v -count=1