From 8eb5eab13cedd29b2d9207fcb1881cf035166568 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Thu, 30 Apr 2020 16:43:08 +0200 Subject: [PATCH] Makefile: Add test-parallel target Signed-off-by: Michael Mayer --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ebbc79c91..815522b30 100644 --- a/Makefile +++ b/Makefile @@ -93,6 +93,9 @@ acceptance-firefox: test-go: $(info Running all Go unit tests...) $(GOTEST) -parallel 1 -count 1 -cpu 1 -tags slow -timeout 20m ./pkg/... ./internal/... +test-parallel: + $(info Running all Go unit tests in parallel mode...) + $(GOTEST) -parallel 2 -count 1 -cpu 2 -tags slow -timeout 20m ./pkg/... ./internal/... test-verbose: $(info Running all Go unit tests in verbose mode...) $(GOTEST) -parallel 1 -count 1 -cpu 1 -tags slow -timeout 20m -v ./pkg/... ./internal/...