From 9d448494b28db1b62543f42e4727d7b1dec79352 Mon Sep 17 00:00:00 2001 From: Dane LeBlanc Date: Thu, 5 Oct 2017 17:26:24 -0400 Subject: [PATCH] Skip e2e check for logs API path if provider is local There is a networking e2e test with the It() description: ``` "should provide unchanging, static URL paths for kubernetes api services" ``` This test performs GETs from the Kubernetes API using various paths, including "/logs". This test for a GET using path "/logs" should be skipped for provider type "skeleton", since this path is unsupported. This change adds "skeleton" to the list of providers for which this test case should be skipped. fixes #53529 --- 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 50b8afa84cf..926e1c61c73 100644 --- a/test/e2e/network/networking.go +++ b/test/e2e/network/networking.go @@ -70,7 +70,7 @@ var _ = SIGDescribe("Networking", func() { {path: "/version"}, // TODO: test proxy links here } - if !framework.ProviderIs("gke") { + if !framework.ProviderIs("gke", "skeleton") { tests = append(tests, struct{ path string }{path: "/logs"}) } for _, test := range tests {