Skip to content

Commit d7f2c87

Browse files
author
Ben Fuller
committed
increasing the timeouts seems to help?
1 parent ef7314a commit d7f2c87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/boshhelpers_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ func BoshCmd(args ...string) *gexec.Session {
3030
func Cleanup() {
3131
BoshCmd("locks")
3232
session := BoshCmd("delete-deployment")
33-
Eventually(session, 15*time.Minute).Should(gexec.Exit(0))
33+
Eventually(session, 30*time.Minute).Should(gexec.Exit(0))
3434
Eventually(BoshCmd("locks")).ShouldNot(gbytes.Say(DeploymentName()))
3535
}
3636

3737
func Deploy(manifest string) *gexec.Session {
3838
session := BoshCmd("deploy", manifest,
3939
"-v", fmt.Sprintf("deployment=%s", DeploymentName()),
4040
fmt.Sprintf("--vars-store=/tmp/%s-vars.yml", DeploymentName()))
41-
Eventually(session, 15*time.Minute).Should(gexec.Exit(0))
41+
Eventually(session, 30*time.Minute).Should(gexec.Exit(0))
4242
Eventually(BoshCmd("locks")).ShouldNot(gbytes.Say(DeploymentName()))
4343
return session
4444
}

0 commit comments

Comments
 (0)