From ba082d48a4be3471b58444e94f2b89ebe3a9d5e8 Mon Sep 17 00:00:00 2001 From: Kiran Kamineni Date: Thu, 11 Jul 2019 17:57:09 -0700 Subject: 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 --- src/k8splugin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/k8splugin') 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 -- cgit 1.2.3-korg