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
This commit is contained in:
Dane LeBlanc 2017-10-05 17:26:24 -04:00
parent 41f928f930
commit 9d448494b2

View File

@ -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 {