From 69282dc4d84a390de451f92c1d20f9672f21b7fe Mon Sep 17 00:00:00 2001 From: "Dr. Stefan Schimanski" Date: Wed, 6 Nov 2019 14:13:04 +0100 Subject: [PATCH] e2e: promote CRD defaulting test to conformance test --- test/conformance/testdata/conformance.txt | 1 + test/e2e/apimachinery/custom_resource_definition.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/test/conformance/testdata/conformance.txt b/test/conformance/testdata/conformance.txt index 1a08a40ff37a..dea98a0c7e6c 100644 --- a/test/conformance/testdata/conformance.txt +++ b/test/conformance/testdata/conformance.txt @@ -15,6 +15,7 @@ test/e2e/apimachinery/custom_resource_definition.go: "creating/deleting custom r test/e2e/apimachinery/custom_resource_definition.go: "listing custom resource definition objects works" test/e2e/apimachinery/custom_resource_definition.go: "getting/updating/patching custom resource definition status sub-resource works" test/e2e/apimachinery/custom_resource_definition.go: "should include custom resource definition resources in discovery documents" +test/e2e/apimachinery/custom_resource_definition.go: "custom resource defaulting for requests and from storage works" test/e2e/apimachinery/garbage_collector.go: "should delete pods created by rc when not orphaning" test/e2e/apimachinery/garbage_collector.go: "should orphan pods created by rc if delete options say so" test/e2e/apimachinery/garbage_collector.go: "should delete RS created by deployment when not orphaning" diff --git a/test/e2e/apimachinery/custom_resource_definition.go b/test/e2e/apimachinery/custom_resource_definition.go index 17651ac531cb..d867a6ebcbb6 100644 --- a/test/e2e/apimachinery/custom_resource_definition.go +++ b/test/e2e/apimachinery/custom_resource_definition.go @@ -264,7 +264,7 @@ var _ = SIGDescribe("CustomResourceDefinition resources [Privileged:ClusterAdmin the default is applied. Create another CR. Remove default, add default for another field and read CR until new field is defaulted, but old default stays. */ - ginkgo.It("custom resource defaulting for requests and from storage works ", func() { + framework.ConformanceIt("custom resource defaulting for requests and from storage works ", func() { config, err := framework.LoadConfig() framework.ExpectNoError(err, "loading config") apiExtensionClient, err := clientset.NewForConfig(config)