Skip to content

Commit d91cb8e

Browse files
Change GINKGO_PROCS to 4
Signed-off-by: faizanahmad055 <faizan.ahmad55@outlook.com>
1 parent 9b60268 commit d91cb8e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ CONTAINER_RUNTIME ?= $(shell command -v docker 2>/dev/null || command -v podman
152152
# Set SKIP_BUILD=true to skip the image build/load steps and use a pre-built image.
153153
SKIP_BUILD ?= false
154154
# Number of parallel Ginkgo workers. Defaults to 1 (sequential). Override with GINKGO_PROCS=N.
155-
GINKGO_PROCS ?= 1
155+
GINKGO_PROCS ?= 4
156156

157157
.PHONY: e2e-setup
158158
e2e-setup: ## One-time setup: create Kind cluster and install dependencies (Argo, CSI, Vault)

test/e2e/core/workloads_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/stakater/Reloader/test/e2e/utils"
1111
)
1212

13-
var _ = Describe("Workload Reload Tests", func() {
13+
var _ = Describe("Workload Reload Tests", Serial, func() {
1414
var (
1515
configMapName string
1616
secretName string

test/e2e/csi/csi_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/stakater/Reloader/test/e2e/utils"
1111
)
1212

13-
var _ = Describe("CSI SecretProviderClass Tests", Label("csi"), func() {
13+
var _ = Describe("CSI SecretProviderClass Tests", Label("csi"), Serial, func() {
1414
var (
1515
deploymentName string
1616
configMapName string

0 commit comments

Comments
 (0)