diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-11-26 14:53:56 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-12-04 11:43:17 +0100 |
commit | 8dab410181e15bb1ae861086b4d21f851f4cfd94 (patch) | |
tree | 1a3e5bef1d1667dbf903242b367faf99a6747ad3 | |
parent | 70284b18cc7d4dc478c439cdda60ba64cfec060b (diff) | |
download | podman-8dab410181e15bb1ae861086b4d21f851f4cfd94.tar.gz podman-8dab410181e15bb1ae861086b4d21f851f4cfd94.tar.bz2 podman-8dab410181e15bb1ae861086b4d21f851f4cfd94.zip |
e2e: bump pull timeout to 240 seconds
I am constantly hitting the 90 seconds limit with my very slow
connection.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
-rw-r--r-- | test/e2e/common_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go index 16d8bb770..d7bbdc633 100644 --- a/test/e2e/common_test.go +++ b/test/e2e/common_test.go @@ -317,7 +317,7 @@ func (p *PodmanTestIntegration) createArtifact(image string) { fmt.Printf("Caching %s at %s...", image, destName) if _, err := os.Stat(destName); os.IsNotExist(err) { pull := p.PodmanNoCache([]string{"pull", image}) - pull.Wait(90) + pull.Wait(240) Expect(pull.ExitCode()).To(Equal(0)) save := p.PodmanNoCache([]string{"save", "-o", destName, image}) |