summaryrefslogtreecommitdiff
path: root/test/e2e/common_test.go
diff options
context:
space:
mode:
authorMatej Vasek <mvasek@redhat.com>2021-02-03 16:35:40 +0100
committerMatthew Heon <matthew.heon@pm.me>2021-02-08 14:29:39 -0500
commit2df59dece58a794c58fa4ad15f3f9b13a4b7aa42 (patch)
tree51cb8ab1f7d6d79a304d2e5e15c7c699526e3896 /test/e2e/common_test.go
parent5397737edc4036b2aaf1704558fe3b83d9883757 (diff)
downloadpodman-2df59dece58a794c58fa4ad15f3f9b13a4b7aa42.tar.gz
podman-2df59dece58a794c58fa4ad15f3f9b13a4b7aa42.tar.bz2
podman-2df59dece58a794c58fa4ad15f3f9b13a4b7aa42.zip
Increase timeouts in some tests
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'test/e2e/common_test.go')
-rw-r--r--test/e2e/common_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go
index 41ad9640c..a870117d9 100644
--- a/test/e2e/common_test.go
+++ b/test/e2e/common_test.go
@@ -437,7 +437,7 @@ func (p *PodmanTestIntegration) BuildImage(dockerfile, imageName string, layers
err := ioutil.WriteFile(dockerfilePath, []byte(dockerfile), 0755)
Expect(err).To(BeNil())
session := p.Podman([]string{"build", "--layers=" + layers, "-t", imageName, "--file", dockerfilePath, p.TempDir})
- session.Wait(120)
+ session.Wait(240)
Expect(session).Should(Exit(0), fmt.Sprintf("BuildImage session output: %q", session.OutputToString()))
}