From a51f291b914cb76a6003bad27aa30193e49bf804 Mon Sep 17 00:00:00 2001 From: Isaac Hollander McCreery Date: Wed, 27 Jan 2016 16:10:33 -0800 Subject: [PATCH] Classify all HPA tests as [Feature:Autoscaling] --- test/e2e/horizontal_pod_autoscaling.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/horizontal_pod_autoscaling.go b/test/e2e/horizontal_pod_autoscaling.go index 424e99a8661..135daaadb04 100644 --- a/test/e2e/horizontal_pod_autoscaling.go +++ b/test/e2e/horizontal_pod_autoscaling.go @@ -31,14 +31,14 @@ const ( subresource = "scale" ) -var _ = Describe("Horizontal pod autoscaling (scale resource: CPU) [Skipped]", func() { +var _ = Describe("Horizontal pod autoscaling (scale resource: CPU) [Feature:Autoscaling]", func() { var rc *ResourceConsumer f := NewFramework("horizontal-pod-autoscaling") titleUp := "Should scale from 1 pod to 3 pods and from 3 to 5" titleDown := "Should scale from 5 pods to 3 pods and from 3 to 1" - Describe("Deployment [Feature:Deployment]", func() { + Describe("Deployment", func() { // CPU tests via deployments It(titleUp, func() { scaleUp("deployment", kindDeployment, rc, f) @@ -48,7 +48,7 @@ var _ = Describe("Horizontal pod autoscaling (scale resource: CPU) [Skipped]", f }) }) - Describe("ReplicationController [Feature:Autoscaling]", func() { + Describe("ReplicationController", func() { // CPU tests via replication controllers It(titleUp, func() { scaleUp("rc", kindRC, rc, f)