Merge pull request #41257 from spxtr/flaky

Automatic merge from submit-queue (batch tested with PRs 41342, 41257)

Move two flaky e2e tests to the flaky suite.

cc @kargakis @davidopp 

We should have moved these a long time ago.
**Release note**:
```release-note
NONE
```
pull/6/head
Kubernetes Submit Queue 2017-02-13 23:07:07 -08:00 committed by GitHub
commit c13eb9b259
2 changed files with 4 additions and 2 deletions

View File

@ -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() {

View File

@ -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())