Reduce process count in test 05/91305/1
authorKiran Kamineni <kiran.k.kamineni@intel.com>
Fri, 12 Jul 2019 00:57:09 +0000 (17:57 -0700)
committerKiran Kamineni <kiran.k.kamineni@intel.com>
Fri, 12 Jul 2019 00:57:13 +0000 (17:57 -0700)
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>
src/k8splugin/Makefile

index d5bdb6f..5544994 100644 (file)
@@ -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