mirror of https://github.com/containers/podman.git
Try disabling --rm on notify_socket test
We have a consistent CI failure with the notify_socket test that I can't reproduce locally. There's no reason for the test to have --rm, so try removing it. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
parent
b1770ecc5b
commit
9d4e7fe58b
|
|
@ -322,7 +322,7 @@ var _ = Describe("Podman run", func() {
|
|||
os.Setenv("NOTIFY_SOCKET", sock)
|
||||
defer os.Unsetenv("NOTIFY_SOCKET")
|
||||
|
||||
session := podmanTest.Podman([]string{"run", "--rm", ALPINE, "printenv", "NOTIFY_SOCKET"})
|
||||
session := podmanTest.Podman([]string{"run", ALPINE, "printenv", "NOTIFY_SOCKET"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
Expect(len(session.OutputToStringArray())).To(BeNumerically(">", 0))
|
||||
|
|
|
|||
Loading…
Reference in New Issue