From d93f70149c8a3034f30d7f6afcebfaaa7af19192 Mon Sep 17 00:00:00 2001 From: Michal Fojtik Date: Wed, 18 Dec 2019 14:14:44 +0100 Subject: [PATCH] e2e: disable check basic usages test for service catalog --- test/extended/operators/service_catalog.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/extended/operators/service_catalog.go b/test/extended/operators/service_catalog.go index 55f84bae75e8..08c8dd4691a3 100644 --- a/test/extended/operators/service_catalog.go +++ b/test/extended/operators/service_catalog.go @@ -2,14 +2,15 @@ package operators import ( "fmt" + "path/filepath" + "strings" + "time" + g "github.com/onsi/ginkgo" o "github.com/onsi/gomega" exutil "github.com/openshift/origin/test/extended/util" "k8s.io/apimachinery/pkg/util/wait" e2e "k8s.io/kubernetes/test/e2e/framework" - "path/filepath" - "strings" - "time" ) var _ = g.Describe("[Feature:Platform] Service Catalog should", func() { @@ -99,6 +100,7 @@ var _ = g.Describe("[Feature:Platform] Service Catalog should", func() { }, 120) g.It("check basic usages: OCP-24062, OCP-24049, OCP-15600", func() { + g.Skip("TODO: Disabled due to https://bugzilla.redhat.com/show_bug.cgi?id=1784406") g.By("Check Service Catalog apiservice") err = wait.Poll(3*time.Second, serviceCatalogWait, func() (bool, error) { output, err := oc.AsAdmin().Run("get").Args("apiservices", "v1beta1.servicecatalog.k8s.io", "-o=jsonpath={.status.conditions[0].reason}").Output()