Skip to content

Commit efb945e

Browse files
committed
Add P as alias of ACCTEST_PARALLELISM
1 parent 848e21f commit efb945e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

GNUmakefile

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ SVC_DIR ?= ./internal/service
66
TEST_COUNT ?= 1
77
ACCTEST_TIMEOUT ?= 180m
88
ACCTEST_PARALLELISM ?= 20
9+
P ?= 20
910
GO_VER ?= go
1011
SWEEP_TIMEOUT ?= 60m
1112

@@ -57,6 +58,10 @@ ifeq ($(PKG_NAME), internal/service/wavelength)
5758
TEST = ./$(PKG_NAME)/...
5859
endif
5960

61+
ifneq ($(P), 20)
62+
ACCTEST_PARALLELISM = $(P)
63+
endif
64+
6065
default: build
6166

6267
build: fmtcheck

0 commit comments

Comments
 (0)