Skip to content

Commit

Permalink
Move two flaky e2e tests to the flaky suite.
Browse files Browse the repository at this point in the history
  • Loading branch information
spxtr committed Feb 10, 2017
1 parent 03bde62 commit d470175
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/e2e/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ var _ = framework.KubeDescribe("Deployment", func() {
It("overlapping deployment should not fight with each other", func() {
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)
})
It("iterative rollouts should eventually progress", func() {
Expand Down
3 changes: 2 additions & 1 deletion test/e2e/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ var _ = framework.KubeDescribe("Pods Extended", func() {
BeforeEach(func() {
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")
name := "pod-submit-remove-" + string(uuid.NewUUID())
value := strconv.Itoa(time.Now().Nanosecond())
Expand Down

0 comments on commit d470175

Please sign in to comment.