Merge pull request #16322 from Luap99/remote-ginkgo

ginkgo testing: fix podman usernamespace join
This commit is contained in:
OpenShift Merge Robot
2022-10-27 13:47:23 -04:00
committed by GitHub
5 changed files with 10 additions and 10 deletions

View File

@ -539,7 +539,7 @@ test: localunit localintegration remoteintegration localsystem remotesystem ##
.PHONY: ginkgo-run
ginkgo-run:
ACK_GINKGO_RC=true ginkgo version
ACK_GINKGO_RC=true ginkgo -v $(TESTFLAGS) -tags "$(TAGS)" $(GINKGOTIMEOUT) -cover -flakeAttempts 3 -progress -trace -noColor -nodes $(GINKGONODES) -debug $(GINKGOWHAT) $(HACK)
ACK_GINKGO_RC=true ginkgo -v $(TESTFLAGS) -tags "$(TAGS) remote" $(GINKGOTIMEOUT) -cover -flakeAttempts 3 -progress -trace -noColor -nodes $(GINKGONODES) -debug $(GINKGOWHAT) $(HACK)
.PHONY: ginkgo
ginkgo:
@ -547,7 +547,7 @@ ginkgo:
.PHONY: ginkgo-remote
ginkgo-remote:
$(MAKE) ginkgo-run TAGS="$(REMOTETAGS)" HACK=
$(MAKE) ginkgo-run TAGS="$(REMOTETAGS) remote_testing" HACK=
.PHONY: localintegration
localintegration: test-binaries ginkgo

View File

@ -1,5 +1,5 @@
//go:build remote
// +build remote
//go:build remote_testing
// +build remote_testing
package integration

View File

@ -1,5 +1,5 @@
//go:build !remote
// +build !remote
//go:build !remote_testing
// +build !remote_testing
package integration

View File

@ -1,5 +1,5 @@
//go:build !remote
// +build !remote
//go:build !remote_testing
// +build !remote_testing
// build for play kube is not supported on remote yet.

View File

@ -1,5 +1,5 @@
//go:build !remote
// +build !remote
//go:build !remote_testing
// +build !remote_testing
package integration