From 5ca235e0eec9af8bd3cf1f5e07ebd3ae4f7f0768 Mon Sep 17 00:00:00 2001 From: Francesco Romani Date: Thu, 9 Mar 2023 16:26:01 +0100 Subject: [PATCH] e2e: podresources: promote platform-independent test as NodeConformance We have quite a few podresources e2e tests and, as the feature progresses to GA, we should consider moving them to NodeConformance. Unfortunately most of them require linux-specific features not in the test themselves but in the test prelude (fixture) to check or create the node conditions (e.g. presence or not of devices, online CPUS...) to be verified in the test proper. For this reason we promote only a single test for starters. Signed-off-by: Francesco Romani --- test/e2e_node/podresources_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/podresources_test.go b/test/e2e_node/podresources_test.go index cba77b8234a..5cf2f834cec 100644 --- a/test/e2e_node/podresources_test.go +++ b/test/e2e_node/podresources_test.go @@ -821,7 +821,7 @@ var _ = SIGDescribe("POD Resources [Serial] [Feature:PodResources][NodeFeature:P }) }) - ginkgo.Context("when querying /metrics", func() { + ginkgo.Context("when querying /metrics [NodeConformance]", func() { ginkgo.BeforeEach(func(ctx context.Context) { // ensure APIs have been called at least once endpoint, err := util.LocalEndpoint(defaultPodResourcesPath, podresources.Socket)