Skip to content

Commit

Permalink
e2e: bump pull timeout to 240 seconds
Browse files Browse the repository at this point in the history
I am constantly hitting the 90 seconds limit with my very slow
connection.

Signed-off-by: Valentin Rothberg <[email protected]>
  • Loading branch information
vrothberg committed Dec 4, 2020
1 parent 70284b1 commit 8dab410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down

0 comments on commit 8dab410

Please sign in to comment.