build: Increase test timeout

This commit is contained in:
Felicitas Pojtinger
2022-01-12 23:08:22 +01:00
parent a663be5902
commit 4135bd3cee

View File

@@ -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: