From 45a6ede4febe83e9e3e710cd431cd6614cf87b29 Mon Sep 17 00:00:00 2001 From: Adrian Moisey Date: Sat, 21 Feb 2026 07:22:11 +0200 Subject: [PATCH] Mark some HPA slow tests as slow This will put the tests near the start of the run --- test/e2e/autoscaling/horizontal_pod_autoscaling.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/autoscaling/horizontal_pod_autoscaling.go b/test/e2e/autoscaling/horizontal_pod_autoscaling.go index 3a58a93be14..59c0dbec95e 100644 --- a/test/e2e/autoscaling/horizontal_pod_autoscaling.go +++ b/test/e2e/autoscaling/horizontal_pod_autoscaling.go @@ -48,7 +48,7 @@ var _ = SIGDescribe(feature.HPA, "Horizontal pod autoscaling (scale resource: CP f := framework.NewDefaultFramework("horizontal-pod-autoscaling") f.NamespacePodSecurityLevel = api.LevelBaseline - f.Describe("Deployment (Pod Resource)", func() { + f.Describe("Deployment (Pod Resource)", framework.WithSlow(), func() { ginkgo.It(titleUp+titleAverageUtilization, func(ctx context.Context) { scaleUp(ctx, "test-deployment", e2eautoscaling.KindDeployment, cpuResource, utilizationMetricType, false, f) }) @@ -81,7 +81,7 @@ var _ = SIGDescribe(feature.HPA, "Horizontal pod autoscaling (scale resource: CP }) }) - f.Describe("ReplicaSet", func() { + f.Describe("ReplicaSet", framework.WithSlow(), func() { ginkgo.It(titleUp, func(ctx context.Context) { scaleUp(ctx, "rs", e2eautoscaling.KindReplicaSet, cpuResource, utilizationMetricType, false, f) }) @@ -91,7 +91,7 @@ var _ = SIGDescribe(feature.HPA, "Horizontal pod autoscaling (scale resource: CP }) // These tests take ~20 minutes each. - f.Describe("ReplicaSet", func() { + f.Describe("ReplicaSet", framework.WithSlow(), func() { ginkgo.It(titleUp+" and verify decision stability", func(ctx context.Context) { scaleUp(ctx, "rs", e2eautoscaling.KindReplicaSet, cpuResource, utilizationMetricType, true, f) })