Merge pull request #19421 from janetkuo/known-flaky

Label 3 flaky deployment e2e tests with [Flaky]
pull/6/head
Marek Grabowski 2016-01-11 09:55:42 +01:00
commit b7f03ff600
1 changed files with 3 additions and 3 deletions

View File

@ -34,13 +34,13 @@ var _ = Describe("Deployment", func() {
It("deployment should create new pods", func() {
testNewDeployment(f)
})
It("deployment should delete old pods and create new ones", func() {
It("deployment should delete old pods and create new ones [Flaky]", func() {
testRollingUpdateDeployment(f)
})
It("deployment should scale up and down in the right order", func() {
It("deployment should scale up and down in the right order [Flaky]", func() {
testRollingUpdateDeploymentEvents(f)
})
It("deployment should support rollover", func() {
It("deployment should support rollover [Flaky]", func() {
testRolloverDeployment(f)
})
})