Remove all deployment e2e tests from flaky list

This commit is contained in:
Janet Kuo 2016-02-24 15:00:59 -08:00
parent 9eed320088
commit 34a97a2433

View File

@ -54,16 +54,16 @@ var _ = Describe("Deployment", func() {
It("deployment should delete old replica sets", func() { It("deployment should delete old replica sets", func() {
testDeploymentCleanUpPolicy(f) testDeploymentCleanUpPolicy(f)
}) })
It("[Flaky] deployment should support rollover", func() { It("deployment should support rollover", func() {
testRolloverDeployment(f) testRolloverDeployment(f)
}) })
It("[Flaky] paused deployment should be ignored by the controller", func() { It("paused deployment should be ignored by the controller", func() {
testPausedDeployment(f) testPausedDeployment(f)
}) })
It("[Flaky] deployment should support rollback", func() { It("deployment should support rollback", func() {
testRollbackDeployment(f) testRollbackDeployment(f)
}) })
It("[Flaky] deployment should support rollback when there's replica set with no revision", func() { It("deployment should support rollback when there's replica set with no revision", func() {
testRollbackDeploymentRSNoRevision(f) testRollbackDeploymentRSNoRevision(f)
}) })
It("deployment should label adopted RSs and pods", func() { It("deployment should label adopted RSs and pods", func() {