aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/Makefile
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2019-07-11 17:57:09 -0700
committerKiran Kamineni <kiran.k.kamineni@intel.com>2019-07-11 17:57:13 -0700
commitba082d48a4be3471b58444e94f2b89ebe3a9d5e8 (patch)
tree38130d376a67b1033b4ebd2e04a6dc4e5bbc6147 /src/k8splugin/Makefile
parent7ff99668b98aae1210f72e84fcc1305814563600 (diff)
Reduce process count in test
CI seems to be failing with out of memory issues This reduces the multiprocess to 2 for the go test command. Issue-ID: MULTICLOUD-666 Change-Id: I3f70ecad51cc16f8972346882d5d98fc803427ef Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'src/k8splugin/Makefile')
-rw-r--r--src/k8splugin/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/k8splugin/Makefile b/src/k8splugin/Makefile
index d5bdb6fc..55449947 100644
--- a/src/k8splugin/Makefile
+++ b/src/k8splugin/Makefile
@@ -44,5 +44,5 @@ clean:
.PHONY: cover
cover:
- @go test ./... -coverprofile=coverage.out
+ @go test -p 2 ./... -coverprofile=coverage.out
@go tool cover -html=coverage.out -o coverage.html