From ac2e103280fe2cdcb051eb03fa8408ccecdfd296 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Tue, 3 Oct 2017 09:08:34 -0400 Subject: [PATCH] Remove conformance tag for internet connectivity ICMP ping is not available in many environments, so we should avoid using a e2e test based the premise as a conformance test. --- test/e2e/network/networking.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/network/networking.go b/test/e2e/network/networking.go index 87a1d602eed..97034485055 100644 --- a/test/e2e/network/networking.go +++ b/test/e2e/network/networking.go @@ -45,7 +45,7 @@ var _ = SIGDescribe("Networking", func() { } }) - It("should provide Internet connection for containers [Conformance]", func() { + It("should provide Internet connection for containers", func() { By("Running container which tries to ping 8.8.8.8") framework.ExpectNoError( framework.CheckConnectivityToHost(f, "", "ping-test", "8.8.8.8", 30))