diff --git a/test/e2e/apimachinery/chunking.go b/test/e2e/apimachinery/chunking.go index ebd461261c3..c864d069b2d 100644 --- a/test/e2e/apimachinery/chunking.go +++ b/test/e2e/apimachinery/chunking.go @@ -122,7 +122,7 @@ var _ = SIGDescribe("Servers with support for API chunking", func() { gomega.Expect(list.Items).To(gomega.HaveLen(numberOfTotalResources)) }) - ginkgo.It("should support continue listing from the last key if the original version has been compacted away, though the list is inconsistent", func() { + ginkgo.It("should support continue listing from the last key if the original version has been compacted away, though the list is inconsistent [Slow]", func() { ns := f.Namespace.Name c := f.ClientSet client := c.CoreV1().PodTemplates(ns) diff --git a/test/e2e/apps/statefulset.go b/test/e2e/apps/statefulset.go index 9f070f62da4..41668813bbc 100644 --- a/test/e2e/apps/statefulset.go +++ b/test/e2e/apps/statefulset.go @@ -576,7 +576,7 @@ var _ = SIGDescribe("StatefulSet", func() { Testname: StatefulSet, Scaling Description: StatefulSet MUST create Pods in ascending order by ordinal index when scaling up, and delete Pods in descending order when scaling down. Scaling up or down MUST pause if any Pods belonging to the StatefulSet are unhealthy. This test does not depend on a preexisting default StorageClass or a dynamic provisioner. */ - framework.ConformanceIt("Scaling should happen in predictable order and halt if any stateful pod is unhealthy", func() { + framework.ConformanceIt("Scaling should happen in predictable order and halt if any stateful pod is unhealthy [Slow]", func() { psLabels := klabels.Set(labels) ginkgo.By("Initializing watcher for selector " + psLabels.String()) watcher, err := f.ClientSet.CoreV1().Pods(ns).Watch(metav1.ListOptions{ @@ -661,7 +661,7 @@ var _ = SIGDescribe("StatefulSet", func() { Testname: StatefulSet, Burst Scaling Description: StatefulSet MUST support the Parallel PodManagementPolicy for burst scaling. This test does not depend on a preexisting default StorageClass or a dynamic provisioner. */ - framework.ConformanceIt("Burst scaling should run to completion even with unhealthy pods", func() { + framework.ConformanceIt("Burst scaling should run to completion even with unhealthy pods [Slow]", func() { psLabels := klabels.Set(labels) ginkgo.By("Creating stateful set " + ssName + " in namespace " + ns) diff --git a/test/e2e/autoscaling/horizontal_pod_autoscaling.go b/test/e2e/autoscaling/horizontal_pod_autoscaling.go index 1a5aed07085..f244177a46f 100644 --- a/test/e2e/autoscaling/horizontal_pod_autoscaling.go +++ b/test/e2e/autoscaling/horizontal_pod_autoscaling.go @@ -79,7 +79,7 @@ var _ = SIGDescribe("[HPA] Horizontal pod autoscaling (scale resource: CPU)", fu } scaleTest.run("rc-light", common.KindRC, rc, f) }) - ginkgo.It("Should scale from 2 pods to 1 pod", func() { + ginkgo.It("Should scale from 2 pods to 1 pod [Slow]", func() { scaleTest := &HPAScaleTest{ initPods: 2, totalInitialCPUUsage: 50, diff --git a/test/e2e/storage/testpatterns/testpattern.go b/test/e2e/storage/testpatterns/testpattern.go index 8e0a543ca34..f610ac5d9b9 100644 --- a/test/e2e/storage/testpatterns/testpattern.go +++ b/test/e2e/storage/testpatterns/testpattern.go @@ -128,21 +128,24 @@ var ( // XfsInlineVolume is TestPattern for "Inline-volume (xfs)" XfsInlineVolume = TestPattern{ - Name: "Inline-volume (xfs)", - VolType: InlineVolume, - FsType: "xfs", + Name: "Inline-volume (xfs)", + VolType: InlineVolume, + FsType: "xfs", + FeatureTag: "[Slow]", } // XfsPreprovisionedPV is TestPattern for "Pre-provisioned PV (xfs)" XfsPreprovisionedPV = TestPattern{ - Name: "Pre-provisioned PV (xfs)", - VolType: PreprovisionedPV, - FsType: "xfs", + Name: "Pre-provisioned PV (xfs)", + VolType: PreprovisionedPV, + FsType: "xfs", + FeatureTag: "[Slow]", } // XfsDynamicPV is TestPattern for "Dynamic PV (xfs)" XfsDynamicPV = TestPattern{ - Name: "Dynamic PV (xfs)", - VolType: DynamicPV, - FsType: "xfs", + Name: "Dynamic PV (xfs)", + VolType: DynamicPV, + FsType: "xfs", + FeatureTag: "[Slow]", } // Definitions for ntfs diff --git a/test/e2e/storage/testsuites/volumemode.go b/test/e2e/storage/testsuites/volumemode.go index 03fcab0d1e5..6bd3b6ae2d7 100644 --- a/test/e2e/storage/testsuites/volumemode.go +++ b/test/e2e/storage/testsuites/volumemode.go @@ -236,7 +236,7 @@ func (t *volumeModeTestSuite) defineTests(driver TestDriver, pattern testpattern } case testpatterns.DynamicPV: if pattern.VolMode == v1.PersistentVolumeBlock && !isBlockSupported { - ginkgo.It("should fail in binding dynamic provisioned PV to PVC", func() { + ginkgo.It("should fail in binding dynamic provisioned PV to PVC [Slow]", func() { init() defer cleanup()