Merge pull request #19425 from ihmccreery/skip-labels

Label [Skipped] tests apprpriately
This commit is contained in:
Jeff Lowdermilk
2016-01-08 14:50:10 -08:00
4 changed files with 23 additions and 33 deletions

View File

@@ -390,6 +390,11 @@ func (cont *IngressController) Cleanup(del bool) error {
return fmt.Errorf(errMsg)
}
// Before enabling this loadbalancer test in any other test list you must
// make sure the associated project has enough quota. At the time of this
// writing a GCE project is allowed 3 backend services by default. This
// test requires at least 5.
//
// Slow by design (10 min)
// Flaky issue #17518
var _ = Describe("GCE L7 LoadBalancer Controller [Serial] [Slow] [Flaky]", func() {

View File

@@ -48,7 +48,9 @@ const (
restartPodReadyAgainTimeout = 5 * time.Minute
)
var _ = Describe("Restart", func() {
// TODO(ihmccreery): This is skipped because it was previously in
// REBOOT_SKIP_TESTS, dates back before version control (#10078)
var _ = Describe("Restart [Skipped]", func() {
var c *client.Client
var ps *podStore
var skipped bool

View File

@@ -203,7 +203,9 @@ func (s *ingManager) test(path string) error {
})
}
var _ = Describe("ServiceLoadBalancer", func() {
// TODO(ihmccreery) Skipped originally in #14988, never sent follow-up PR, as
// far as I can tell.
var _ = Describe("ServiceLoadBalancer [Skipped]", func() {
// These variables are initialized after framework's beforeEach.
var ns string
var repoRoot string