From 044e0a92aa373e28a8bae891c0abe075c4e211bf Mon Sep 17 00:00:00 2001 From: Max Forbes Date: Mon, 20 Jul 2015 14:35:09 -0700 Subject: [PATCH] Skip GKE for shell services test and make clear why --- test/e2e/shell.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/e2e/shell.go b/test/e2e/shell.go index 771acd725f..c52a706c4b 100644 --- a/test/e2e/shell.go +++ b/test/e2e/shell.go @@ -27,8 +27,12 @@ import ( var _ = Describe("Shell", func() { It("should pass tests for services.sh", func() { - SkipUnlessProviderIs("gce", "gke") - + // This test requires: + // - SSH + // - master access + // ... so the provider check should be identical to the intersection of + // providers that provide those capabilities. + SkipUnlessProviderIs("gce") runCmdTest(filepath.Join(testContext.RepoRoot, "hack/e2e-suite/services.sh")) }) })