From ecd919ebc2eec5ccbdebef8acd7686c59565662d Mon Sep 17 00:00:00 2001 From: Andrea Maria Piana Date: Wed, 29 Jul 2020 13:36:17 +0200 Subject: [PATCH] increase test timeout --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dad0db818..dde0f2b52 100644 --- a/Makefile +++ b/Makefile @@ -262,7 +262,7 @@ test-unit: UNIT_TEST_PACKAGES = $(shell go list ./... | \ grep -v /t/benchmarks | \ grep -v /transactions/fake ) test-unit: ##@tests Run unit and integration tests - go test -v -failfast $(UNIT_TEST_PACKAGES) $(gotest_extraflags) + go test -v -timeout 30m -failfast $(UNIT_TEST_PACKAGES) $(gotest_extraflags) cd ./waku && go test -v -failfast ./... $(gotest_extraflags) test-unit-race: gotest_extraflags=-race