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:
Matthew Heon 2018-07-02 14:02:54 -04:00 committed by Atomic Bot
parent 767b3ddc43
commit 40e4481bd8

View file

@ -478,6 +478,11 @@ var _ = Describe("Podman run", 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.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))