mirror of
https://github.com/containers/podman.git
synced 2025-09-12 01:38:59 +08:00
Merge pull request #16322 from Luap99/remote-ginkgo
ginkgo testing: fix podman usernamespace join
This commit is contained in:
4
Makefile
4
Makefile
@ -539,7 +539,7 @@ test: localunit localintegration remoteintegration localsystem remotesystem ##
|
|||||||
.PHONY: ginkgo-run
|
.PHONY: ginkgo-run
|
||||||
ginkgo-run:
|
ginkgo-run:
|
||||||
ACK_GINKGO_RC=true ginkgo version
|
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
|
.PHONY: ginkgo
|
||||||
ginkgo:
|
ginkgo:
|
||||||
@ -547,7 +547,7 @@ ginkgo:
|
|||||||
|
|
||||||
.PHONY: ginkgo-remote
|
.PHONY: ginkgo-remote
|
||||||
ginkgo-remote:
|
ginkgo-remote:
|
||||||
$(MAKE) ginkgo-run TAGS="$(REMOTETAGS)" HACK=
|
$(MAKE) ginkgo-run TAGS="$(REMOTETAGS) remote_testing" HACK=
|
||||||
|
|
||||||
.PHONY: localintegration
|
.PHONY: localintegration
|
||||||
localintegration: test-binaries ginkgo
|
localintegration: test-binaries ginkgo
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
//go:build remote
|
//go:build remote_testing
|
||||||
// +build remote
|
// +build remote_testing
|
||||||
|
|
||||||
package integration
|
package integration
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
//go:build !remote
|
//go:build !remote_testing
|
||||||
// +build !remote
|
// +build !remote_testing
|
||||||
|
|
||||||
package integration
|
package integration
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
//go:build !remote
|
//go:build !remote_testing
|
||||||
// +build !remote
|
// +build !remote_testing
|
||||||
|
|
||||||
// build for play kube is not supported on remote yet.
|
// build for play kube is not supported on remote yet.
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
//go:build !remote
|
//go:build !remote_testing
|
||||||
// +build !remote
|
// +build !remote_testing
|
||||||
|
|
||||||
package integration
|
package integration
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user