From 8ec08a426e7024d597281dc0af9168f340e10d5d Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Mon, 11 May 2020 12:07:42 -0500 Subject: v2 enable remote integration tests enable remote integration tests Signed-off-by: Brent Baude --- test/e2e/start_test.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/e2e/start_test.go') diff --git a/test/e2e/start_test.go b/test/e2e/start_test.go index 6af0b7068..a7a9e7fdb 100644 --- a/test/e2e/start_test.go +++ b/test/e2e/start_test.go @@ -40,6 +40,7 @@ var _ = Describe("Podman start", func() { }) It("podman start single container by id", func() { + Skip(v2remotefail) session := podmanTest.Podman([]string{"create", "-d", ALPINE, "ls"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -50,6 +51,7 @@ var _ = Describe("Podman start", func() { }) It("podman container start single container by id", func() { + Skip(v2remotefail) session := podmanTest.Podman([]string{"container", "create", "-d", ALPINE, "ls"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -61,6 +63,7 @@ var _ = Describe("Podman start", func() { }) It("podman container start single container by short id", func() { + Skip(v2remotefail) session := podmanTest.Podman([]string{"container", "create", "-d", ALPINE, "ls"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -120,6 +123,7 @@ var _ = Describe("Podman start", func() { }) It("podman failed to start with --rm should delete the container", func() { + SkipIfRemote() session := podmanTest.Podman([]string{"create", "-it", "--rm", ALPINE, "foo"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -132,6 +136,7 @@ var _ = Describe("Podman start", func() { }) It("podman failed to start without --rm should NOT delete the container", func() { + SkipIfRemote() session := podmanTest.Podman([]string{"create", "-it", ALPINE, "foo"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) -- cgit v1.2.3-54-g00ecf