mirror of
https://github.com/containers/podman.git
synced 2025-06-23 10:38:20 +08:00
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:
@ -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))
|
||||
|
Reference in New Issue
Block a user