Increase timeout for test execution on CI
This commit is contained in:
parent
fea37ff5b4
commit
b92a4c6ef8
4
Makefile
4
Makefile
|
@ -298,8 +298,8 @@ 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)
|
||||
cd ./waku && go test -v -failfast ./... $(gotest_extraflags)
|
||||
go test -timeout 20m -v -failfast $(UNIT_TEST_PACKAGES) $(gotest_extraflags)
|
||||
cd ./waku && go test -timeout 20m -v -failfast ./... $(gotest_extraflags)
|
||||
|
||||
test-unit-race: gotest_extraflags=-race
|
||||
test-unit-race: test-unit ##@tests Run unit and integration tests with -race flag
|
||||
|
|
Loading…
Reference in New Issue