mirror of
https://github.com/containers/podman.git
synced 2025-06-25 11:57:13 +08:00
Skip a test in Travis that has timeout issues
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #1041 Approved by: rhatdan
This commit is contained in:
@ -478,6 +478,11 @@ var _ = Describe("Podman run", func() {
|
|||||||
})
|
})
|
||||||
|
|
||||||
It("podman run with built-in volume image", func() {
|
It("podman run with built-in volume image", func() {
|
||||||
|
travisRun, exists := os.LookupEnv("TRAVIS")
|
||||||
|
if exists && travisRun == "1" {
|
||||||
|
Skip("Built-in volume test causes timeouts on Travis - replace mariadb-101-centos7 image to resolve")
|
||||||
|
}
|
||||||
|
|
||||||
session := podmanTest.Podman([]string{"run", "--rm", "docker.io/library/redis:alpine", "ls"})
|
session := podmanTest.Podman([]string{"run", "--rm", "docker.io/library/redis:alpine", "ls"})
|
||||||
session.WaitWithDefaultTimeout()
|
session.WaitWithDefaultTimeout()
|
||||||
Expect(session.ExitCode()).To(Equal(0))
|
Expect(session.ExitCode()).To(Equal(0))
|
||||||
|
Reference in New Issue
Block a user