diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2019-07-11 17:57:09 -0700 |
---|---|---|
committer | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2019-07-11 17:57:13 -0700 |
commit | ba082d48a4be3471b58444e94f2b89ebe3a9d5e8 (patch) | |
tree | 38130d376a67b1033b4ebd2e04a6dc4e5bbc6147 | |
parent | 7ff99668b98aae1210f72e84fcc1305814563600 (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>
-rw-r--r-- | src/k8splugin/Makefile | 2 |
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 |