From d1f1c390f626f1b3111ceb398e71235156463cf1 Mon Sep 17 00:00:00 2001 From: James Houlahan Date: Tue, 7 Feb 2023 13:02:43 +0100 Subject: [PATCH] test: Bump test timeout from 5m to 10m --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 18881bfc..0ee97f5f 100644 --- a/Makefile +++ b/Makefile @@ -222,7 +222,7 @@ change-copyright-year: ./utils/missing_license.sh change-year test: gofiles - go test -v -timeout=5m -p=1 -count=1 -coverprofile=/tmp/coverage.out -run=${TESTRUN} ./internal/... ./pkg/... + go test -v -timeout=10m -p=1 -count=1 -coverprofile=/tmp/coverage.out -run=${TESTRUN} ./internal/... ./pkg/... test-race: gofiles go test -v -timeout=30m -p=1 -count=1 -race -failfast -run=${TESTRUN} ./internal/... ./pkg/...