From 1fb2403743ec24dae131b3b37a7c898af50efc64 Mon Sep 17 00:00:00 2001 From: Todd Short Date: Tue, 12 Nov 2024 09:47:31 -0500 Subject: [PATCH] Disable olmv1 install test during API transision Need to disable the OLMv1 install test during the API transition. It will be updated and enabled once the API transition is complete. Signed-off-by: Todd Short --- test/extended/olm/olmv1.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/extended/olm/olmv1.go b/test/extended/olm/olmv1.go index a2b39e3855c1..3394157c6b57 100644 --- a/test/extended/olm/olmv1.go +++ b/test/extended/olm/olmv1.go @@ -28,6 +28,7 @@ var _ = g.Describe("[sig-olmv1] OLMv1 CRDs", func() { oc := exutil.NewCLIWithoutNamespace("default") g.It("should be installed", func(ctx g.SpecContext) { + g.Skip("Test is temporarily disabled while we make anticipated, breaking changes.") // Check for tech preview, if this is not tech preview, bail if !exutil.IsTechPreviewNoUpgrade(ctx, oc.AdminConfigClient()) { g.Skip("Test only runs in tech-preview") @@ -74,6 +75,7 @@ var _ = g.Describe("[sig-olmv1] OLMv1 Catalogs", func() { oc := exutil.NewCLIWithoutNamespace("default") g.It("should be installed", func(ctx g.SpecContext) { + g.Skip("Test is temporarily disabled while we make anticipated, breaking changes.") // Check for tech preview, if this is not tech preview, bail if !exutil.IsTechPreviewNoUpgrade(ctx, oc.AdminConfigClient()) { g.Skip("Test only runs in tech-preview") @@ -123,6 +125,7 @@ var _ = g.Describe("[sig-olmv1][Serial] OLMv1 operator installation", func() { }) g.It("should install a cluster extension", func(ctx g.SpecContext) { + g.Skip("Test is temporarily disabled while we make anticipated, breaking changes.") const ( packageName = "quay-operator" version = "3.13.0" @@ -161,6 +164,7 @@ var _ = g.Describe("[sig-olmv1][Serial] OLMv1 operator installation", func() { }) g.It("should block cluster upgrades if an incompatible operator is installed", func(ctx g.SpecContext) { + g.Skip("Test is temporarily disabled while we make anticipated, breaking changes.") const ( packageName = "elasticsearch-operator" version = "5.8.13"