From: Kiran Kamineni Date: Fri, 12 Jul 2019 00:57:09 +0000 (-0700) Subject: Reduce process count in test X-Git-Tag: 0.5.0~51 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=ba082d48a4be3471b58444e94f2b89ebe3a9d5e8;p=multicloud%2Fk8s.git 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 --- 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