Skip to content

Commit 9d6013b

Browse files
author
Ryan Lymburner
committed
Increase suite timeout to 90 minutes
1 parent d3143a2 commit 9d6013b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ e2e-test: ## Run e2e tests against cluster pointed to by ~/.kube/config
125125
./suites/integration/... \
126126
--ginkgo.focus="${FOCUS}" \
127127
--ginkgo.skip="${SKIP}" \
128+
--ginkgo.timeout=90m \
128129
--ginkgo.v
129130

130131
.SILENT:

pkg/controllers/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var _ = BeforeSuite(func() {
6767
Expect(err).NotTo(HaveOccurred())
6868
Expect(k8sClient).NotTo(BeNil())
6969

70-
}, 90)
70+
}, 5400)
7171

7272
var _ = AfterSuite(func() {
7373
By("tearing down the test environment")

test/suites/integration/byoc_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ var _ = Describe("Bring your own certificate (BYOC)", Ordered, func() {
8080
// get lattice service dns name for route53 cname
8181
svc := testFramework.GetVpcLatticeService(context.TODO(), core.NewHTTPRoute(gwv1.HTTPRoute(*httpRoute)))
8282
latticeSvcDns = *svc.DnsEntry.DomainName
83-
log.Infof(ctx, "depoloyed lattice service, dns name: %s", latticeSvcDns)
83+
log.Infof(ctx, "deployed lattice service, dns name: %s", latticeSvcDns)
8484

8585
// create route 53 hosted zone and cname
8686
hz, err := createHostedZoneIfNotExists(r53Client, hostedZoneName)

0 commit comments

Comments
 (0)