diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-07-02 14:02:54 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-07-03 10:09:12 +0000 |
commit | 40e4481bd8e0d699aa4f05f59e92d457f594a01f (patch) | |
tree | 1c317cf5a0c67ce67ed7610b905a8c9820555886 /test | |
parent | 767b3ddc433fd57f461fa9866e3e4d47399a6519 (diff) | |
download | podman-40e4481bd8e0d699aa4f05f59e92d457f594a01f.tar.gz podman-40e4481bd8e0d699aa4f05f59e92d457f594a01f.tar.bz2 podman-40e4481bd8e0d699aa4f05f59e92d457f594a01f.zip |
Skip a test in Travis that has timeout issues
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #1041
Approved by: rhatdan
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/run_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index 76269031d..ef88b6791 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -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)) |