From 9e236a6c57bd526c49d0fe9b2c63a1d9fdb3c3b4 Mon Sep 17 00:00:00 2001 From: Janet Kuo Date: Thu, 28 Jan 2016 19:08:19 -0800 Subject: [PATCH] Remove 3 deployment e2e tests from flaky list --- test/e2e/deployment.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/deployment.go b/test/e2e/deployment.go index 98c497493d9..b811c45048c 100644 --- a/test/e2e/deployment.go +++ b/test/e2e/deployment.go @@ -36,10 +36,10 @@ var _ = Describe("Deployment [Feature:Deployment]", func() { It("deployment should create new pods", func() { testNewDeployment(f) }) - It("RollingUpdateDeployment should delete old pods and create new ones [Flaky]", func() { + It("RollingUpdateDeployment should delete old pods and create new ones", func() { testRollingUpdateDeployment(f) }) - It("RollingUpdateDeployment should scale up and down in the right order [Flaky]", func() { + It("RollingUpdateDeployment should scale up and down in the right order", func() { testRollingUpdateDeploymentEvents(f) }) It("RecreateDeployment should delete old pods and create new ones", func() { @@ -48,7 +48,7 @@ var _ = Describe("Deployment [Feature:Deployment]", func() { It("deployment should delete old rcs", func() { testDeploymentCleanUpPolicy(f) }) - It("deployment should support rollover [Flaky]", func() { + It("deployment should support rollover", func() { testRolloverDeployment(f) }) It("paused deployment should be ignored by the controller", func() {