Skip GKE for shell services test and make clear why

pull/6/head
Max Forbes 2015-07-20 14:35:09 -07:00
parent 635073c37c
commit 044e0a92aa
1 changed files with 6 additions and 2 deletions

View File

@ -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"))
})
})