Disable guestbook test for non-gce|gke due to

"createExternalLoadBalancer": true
This commit is contained in:
Timothy St. Clair 2015-04-15 16:14:48 -05:00
parent abab9ea31f
commit a7fb93bb55

View File

@ -97,6 +97,10 @@ var _ = Describe("kubectl", func() {
Describe("guestbook", func() {
var guestbookPath = filepath.Join(testContext.RepoRoot, "examples/guestbook")
if testContext.Provider != "gce" && testContext.Provider != "gke" {
By(fmt.Sprintf("Skipping guestbook, uses createExternalLoadBalancer, a (gce|gke) feature"))
}
It("should create and stop a working application", func() {
defer cleanup(guestbookPath, frontendSelector, redisMasterSelector, redisSlaveSelector)