Commit d4701753 authored by Joe Finney's avatar Joe Finney

Move two flaky e2e tests to the flaky suite.

parent 03bde626
...@@ -95,7 +95,8 @@ var _ = framework.KubeDescribe("Deployment", func() { ...@@ -95,7 +95,8 @@ var _ = framework.KubeDescribe("Deployment", func() {
It("overlapping deployment should not fight with each other", func() { It("overlapping deployment should not fight with each other", func() {
testOverlappingDeployment(f) testOverlappingDeployment(f)
}) })
It("lack of progress should be reported in the deployment status", func() { // Flaky issue #39785.
It("lack of progress should be reported in the deployment status [Flaky]", func() {
testFailedDeployment(f) testFailedDeployment(f)
}) })
It("iterative rollouts should eventually progress", func() { It("iterative rollouts should eventually progress", func() {
......
...@@ -45,7 +45,8 @@ var _ = framework.KubeDescribe("Pods Extended", func() { ...@@ -45,7 +45,8 @@ var _ = framework.KubeDescribe("Pods Extended", func() {
BeforeEach(func() { BeforeEach(func() {
podClient = f.PodClient() podClient = f.PodClient()
}) })
It("should be submitted and removed [Conformance]", func() { // Flaky issue #36821.
It("should be submitted and removed [Conformance] [Flaky]", func() {
By("creating the pod") By("creating the pod")
name := "pod-submit-remove-" + string(uuid.NewUUID()) name := "pod-submit-remove-" + string(uuid.NewUUID())
value := strconv.Itoa(time.Now().Nanosecond()) value := strconv.Itoa(time.Now().Nanosecond())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment