You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: test/e2e/subscription_e2e_test.go
+10-11
Original file line number
Diff line number
Diff line change
@@ -2526,6 +2526,11 @@ var _ = Describe("Subscription", func() {
2526
2526
})
2527
2527
When("bundle unpack retries are enabled", func() {
2528
2528
It("should retry failing unpack jobs", func() {
2529
+
ifok, err:=inKind(c); ok&&err==nil {
2530
+
Skip("This spec fails when run using KIND cluster. See https://github.com/operator-framework/operator-lifecycle-manager/issues/2420 for more details")
2531
+
} elseiferr!=nil {
2532
+
Skip("Could not determine whether running in a kind cluster. Skipping.")
2533
+
}
2529
2534
By("Ensuring a registry to host bundle images")
2530
2535
local, err:=Local(c)
2531
2536
Expect(err).NotTo(HaveOccurred(), "cannot determine if test running locally or on CI: %s", err)
@@ -2581,20 +2586,14 @@ var _ = Describe("Subscription", func() {
2581
2586
}
2582
2587
}
2583
2588
2584
-
// testImage is the name of the image used throughout the test - the image overwritten by skopeo
2585
-
// the tag is generated randomly and appended to the end of the testImage
2589
+
// The remote image to be copied onto the local registry
0 commit comments