From 4135bd3cee658d8a612f925d5d5a7d7e617c5e0d Mon Sep 17 00:00:00 2001 From: Felicitas Pojtinger Date: Wed, 12 Jan 2022 23:08:22 +0100 Subject: [PATCH] build: Increase test timeout --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 666349f..150ec1c 100644 --- a/Makefile +++ b/Makefile @@ -33,11 +33,11 @@ $(addprefix run/,$(obj)): # Test test: - go test ./... -parallel $(shell nproc) + go test -timeout 3600s -parallel $(shell nproc) ./... # Benchmark benchmark: - go test -bench=./... ./... + go test -timeout 3600s -bench=./... ./... # Clean clean: