Skip to content

Commit

Permalink
increase external test timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Abro <[email protected]>
  • Loading branch information
AustinAbro321 committed Aug 2, 2024
1 parent d1aafdd commit 3516701
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/external/ext_in_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func (suite *ExtInClusterTestSuite) SetupSuite() {
Name: "gitea-0",
},
}
waitCtx, waitCancel := context.WithTimeout(context.Background(), 60*time.Second)
waitCtx, waitCancel := context.WithTimeout(context.Background(), 90*time.Second)
defer waitCancel()
err = pkgkubernetes.WaitForReady(waitCtx, c.Watcher, objs)
suite.NoError(err)
Expand Down Expand Up @@ -183,7 +183,7 @@ func (suite *ExtInClusterTestSuite) Test_1_Deploy() {
Name: "podinfo",
},
}
waitCtx, waitCancel := context.WithTimeout(context.Background(), 60*time.Second)
waitCtx, waitCancel := context.WithTimeout(context.Background(), 90*time.Second)
defer waitCancel()
err = pkgkubernetes.WaitForReady(waitCtx, c.Watcher, objs)
suite.NoError(err)
Expand Down

0 comments on commit 3516701

Please sign in to comment.