diff --git a/test/e2e/provider_aws_test.go b/test/e2e/provider_aws_test.go index c7e651fa6..7712ff74b 100644 --- a/test/e2e/provider_aws_test.go +++ b/test/e2e/provider_aws_test.go @@ -72,7 +72,7 @@ var _ = Describe("AWS Templates", Label("provider:cloud", "provider:aws"), Order } }) - It("should work with an AWS provider", func() { + XIt("should work with an AWS provider", func() { // Deploy a standalone cluster and verify it is running/ready. // Deploy standalone with an xlarge instance since it will also be // hosting the hosted cluster. diff --git a/test/e2e/provider_azure_test.go b/test/e2e/provider_azure_test.go index fcdbe27c7..9e2b76abb 100644 --- a/test/e2e/provider_azure_test.go +++ b/test/e2e/provider_azure_test.go @@ -32,7 +32,7 @@ import ( "github.com/Mirantis/hmc/test/utils" ) -var _ = Context("Azure Templates", Label("provider:cloud", "provider:azure"), Ordered, func() { +var _ = XContext("Azure Templates", Label("provider:cloud", "provider:azure"), Ordered, func() { var ( kc *kubeclient.KubeClient standaloneClient *kubeclient.KubeClient @@ -77,7 +77,7 @@ var _ = Context("Azure Templates", Label("provider:cloud", "provider:azure"), Or } }) - It("should work with an Azure provider", func() { + XIt("should work with an Azure provider", func() { templateBy(managedcluster.TemplateAzureStandaloneCP, "creating a ManagedCluster") sd := managedcluster.GetUnstructured(managedcluster.TemplateAzureStandaloneCP) sdName = sd.GetName() diff --git a/test/e2e/provider_vsphere_test.go b/test/e2e/provider_vsphere_test.go index 202d7deda..251d4c18f 100644 --- a/test/e2e/provider_vsphere_test.go +++ b/test/e2e/provider_vsphere_test.go @@ -29,7 +29,7 @@ import ( "github.com/Mirantis/hmc/test/e2e/managedcluster/vsphere" ) -var _ = Context("vSphere Templates", Label("provider:onprem", "provider:vsphere"), Ordered, func() { +var _ = XContext("vSphere Templates", Label("provider:onprem", "provider:vsphere"), Ordered, func() { var ( kc *kubeclient.KubeClient deleteFunc func() error @@ -78,7 +78,7 @@ var _ = Context("vSphere Templates", Label("provider:onprem", "provider:vsphere" } }) - It("should deploy standalone managed cluster", func() { + XIt("should deploy standalone managed cluster", func() { By("creating a managed cluster") d := managedcluster.GetUnstructured(managedcluster.TemplateVSphereStandaloneCP) clusterName = d.GetName()