From 270036820396aaa088810f22edb2252e7f57c3df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serkan=20=C3=96ZAL?= Date: Wed, 4 Jan 2023 02:20:06 +0300 Subject: [PATCH] Set test run parallelization factor to `4` (#17363) --- Makefile.Common | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.Common b/Makefile.Common index 31e48c040c26d..0156d7f05b61e 100644 --- a/Makefile.Common +++ b/Makefile.Common @@ -14,8 +14,8 @@ SRC_ROOT := $(realpath $(dir $(lastword $(MAKEFILE_LIST)))) # build tags required by any component should be defined as an independent variables and later added to GO_BUILD_TAGS below GO_BUILD_TAGS="" -GOTEST_OPT?= -race -timeout 300s --tags=$(GO_BUILD_TAGS) -GOTEST_INTEGRATION_OPT?= -race -timeout 360s +GOTEST_OPT?= -race -timeout 300s -parallel 4 --tags=$(GO_BUILD_TAGS) +GOTEST_INTEGRATION_OPT?= -race -timeout 360s -parallel 4 GOTEST_OPT_WITH_COVERAGE = $(GOTEST_OPT) -coverprofile=coverage.txt -covermode=atomic GOTEST_OPT_WITH_INTEGRATION=$(GOTEST_INTEGRATION_OPT) -tags=integration,$(GO_BUILD_TAGS) -run=Integration -coverprofile=integration-coverage.txt -covermode=atomic GOCMD?= go