Move the slow part of the test into a Slow block.

This commit is contained in:
Matt Liggett 2016-06-17 11:38:53 -07:00
parent dd7626bbf1
commit 7cf7717d4c

View File

@ -194,11 +194,9 @@ var _ = framework.KubeDescribe("Service [Feature:Federation]", func() {
discoverService(f, name, true) discoverService(f, name, true)
} }
// TODO(mml): Unclear how to make this meaningful and not terribly // TODO(mml): This currently takes 9 minutes. Consider reducing the
// slow. How long (how many minutes?) do we verify that a given DNS // TTL and/or running the pods in parallel.
// lookup *doesn't* work before we call it a success? For now, Context("[Slow]", func() {
// commenting out.
/*
localSvcDNSNames := []string{ localSvcDNSNames := []string{
FederatedServiceName, FederatedServiceName,
fmt.Sprintf("%s.%s", FederatedServiceName, f.Namespace.Name), fmt.Sprintf("%s.%s", FederatedServiceName, f.Namespace.Name),
@ -207,7 +205,7 @@ var _ = framework.KubeDescribe("Service [Feature:Federation]", func() {
for _, name := range localSvcDNSNames { for _, name := range localSvcDNSNames {
discoverService(f, name, false) discoverService(f, name, false)
} }
*/ })
}) })
}) })
}) })