diff options
-rw-r--r-- | test/e2e/runlabel_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/e2e/runlabel_test.go b/test/e2e/runlabel_test.go index 5ef68603e..5b8d573b5 100644 --- a/test/e2e/runlabel_test.go +++ b/test/e2e/runlabel_test.go @@ -85,6 +85,9 @@ var _ = Describe("podman container runlabel", func() { }) It("podman container runlabel global options", func() { + if os.Getenv("SPECIALMODE") == "in_podman" { + Skip("Test nonfunctional for podman-in-podman testing") + } image := "podman-global-test:ls" podmanTest.BuildImage(GlobalDockerfile, image, "false") result := podmanTest.Podman([]string{"--syslog", "--log-level", "debug", "container", "runlabel", "RUN", image}) |