From 77e8fdb783dbee2e2e599f7c71af5a45676c4172 Mon Sep 17 00:00:00 2001 From: Tushar Verma Date: Tue, 25 Aug 2026 21:55:12 +0530 Subject: [PATCH] bindings: allow running the tests in parallel Gate -p on GINKGO_PARALLEL the same way ginkgo-run does, so the suite can be put back to serial with GINKGO_PARALLEL=n like pkg/machine/e2e already does. Part of #18540. Signed-off-by: Tushar Verma --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 105f6a296a..cadda1eee9 100644 --- a/Makefile +++ b/Makefile @@ -727,7 +727,8 @@ ginkgo-remote: # bindings tests need access to podman-registry testbindings: PATH := $(PATH):$(CURDIR)/hack testbindings: .install.ginkgo - $(GINKGO) -v $(TESTFLAGS) --tags "$(TAGS) remote" $(GINKGOTIMEOUT) --trace --no-color --timeout 30m -v -r ./pkg/bindings/test + $(GINKGO) -v $(TESTFLAGS) --tags "$(TAGS) remote" $(GINKGOTIMEOUT) --trace --no-color --timeout 30m \ + $(if $(findstring y,$(GINKGO_PARALLEL)),-p,) -r ./pkg/bindings/test .PHONY: localintegration localintegration: test-binaries ginkgo ## Run integration tests locally (test/e2e/)