Mark flaky Deployment e2e tests until the problems are resolved.

Ref #21463, #21467, #21491, #19299
pull/6/head
Brian Grant 2016-02-22 17:27:14 +00:00
parent 95354490c1
commit bd3cde0e0a
1 changed files with 4 additions and 4 deletions

View File

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