Skip to content

Commit

Permalink
Increase php push timeout to 6 minutes
Browse files Browse the repository at this point in the history
All of the default buildpacks will stage applications in under 2 minutes
except this one.  On bosh-lite it takes about 3 minutes for an initial
push so we're doubling that time for the CI runs.

[#73839736]

Signed-off-by: Michael Fraenkel <[email protected]>
  • Loading branch information
sykesm authored and Michael Fraenkel committed Jul 2, 2014
1 parent 729fe77 commit b60df36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/buildpacks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ var _ = Describe("Buildpacks", func() {
})
})

XDescribe("php", func() {
Describe("php", func() {
// This test requires more time during push, because the php buildpack is slower than your average bear
var phpPushTimeout = CF_PUSH_TIMEOUT + 2*time.Minute
var phpPushTimeout = CF_PUSH_TIMEOUT + 4*time.Minute

It("makes the app reachable via its bound route", func() {
Expect(cf.Cf("push", appName, "-p", helpers.NewAssets().Php).Wait(phpPushTimeout)).To(Exit(0))
Expand Down

0 comments on commit b60df36

Please sign in to comment.