Turn on a bunch more remote tests

We need to be more specific about the remote tests we turn off.

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2020-07-22 10:03:45 -04:00
parent 80add2902c
commit a75f96ae90
33 changed files with 55 additions and 81 deletions

View File

@ -1,5 +1,3 @@
// +build !remote
package integration
import (
@ -35,11 +33,12 @@ var _ = Describe("Podman run restart containers", func() {
})
It("Podman start after successful run", func() {
session := podmanTest.Podman([]string{"run", ALPINE, "ls"})
SkipIfRemote()
session := podmanTest.Podman([]string{"run", "--name", "test", ALPINE, "ls"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
session2 := podmanTest.Podman([]string{"start", "--attach", "--latest"})
session2 := podmanTest.Podman([]string{"start", "--attach", "test"})
session2.WaitWithDefaultTimeout()
Expect(session2.ExitCode()).To(Equal(0))
})