From ed06d9e9a1dc0b9c3e8d6958bef4f07c9adb04e4 Mon Sep 17 00:00:00 2001 From: Michelle Au Date: Tue, 3 Jan 2017 09:41:10 -0800 Subject: [PATCH] Tag e2e/pd.go tests with [Volume] --- test/e2e/pd.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/e2e/pd.go b/test/e2e/pd.go index 013becb9f7d..2442c389774 100644 --- a/test/e2e/pd.go +++ b/test/e2e/pd.go @@ -78,7 +78,7 @@ var _ = framework.KubeDescribe("Pod Disks", func() { mathrand.Seed(time.Now().UTC().UnixNano()) }) - It("should schedule a pod w/ a RW PD, ungracefully remove it, then schedule it on another host [Slow]", func() { + It("should schedule a pod w/ a RW PD, ungracefully remove it, then schedule it on another host [Slow] [Volume]", func() { framework.SkipUnlessProviderIs("gce", "gke", "aws") By("creating PD") @@ -142,7 +142,7 @@ var _ = framework.KubeDescribe("Pod Disks", func() { return }) - It("Should schedule a pod w/ a RW PD, gracefully remove it, then schedule it on another host [Slow]", func() { + It("Should schedule a pod w/ a RW PD, gracefully remove it, then schedule it on another host [Slow] [Volume]", func() { framework.SkipUnlessProviderIs("gce", "gke", "aws") By("creating PD") @@ -206,7 +206,7 @@ var _ = framework.KubeDescribe("Pod Disks", func() { return }) - It("should schedule a pod w/ a readonly PD on two hosts, then remove both ungracefully. [Slow]", func() { + It("should schedule a pod w/ a readonly PD on two hosts, then remove both ungracefully. [Slow] [Volume]", func() { framework.SkipUnlessProviderIs("gce", "gke") By("creating PD") @@ -258,7 +258,7 @@ var _ = framework.KubeDescribe("Pod Disks", func() { waitForPDDetach(diskName, host1Name) }) - It("Should schedule a pod w/ a readonly PD on two hosts, then remove both gracefully. [Slow]", func() { + It("Should schedule a pod w/ a readonly PD on two hosts, then remove both gracefully. [Slow] [Volume]", func() { framework.SkipUnlessProviderIs("gce", "gke") By("creating PD") @@ -310,7 +310,7 @@ var _ = framework.KubeDescribe("Pod Disks", func() { waitForPDDetach(diskName, host1Name) }) - It("should schedule a pod w/ a RW PD shared between multiple containers, write to PD, delete pod, verify contents, and repeat in rapid succession [Slow]", func() { + It("should schedule a pod w/ a RW PD shared between multiple containers, write to PD, delete pod, verify contents, and repeat in rapid succession [Slow] [Volume]", func() { framework.SkipUnlessProviderIs("gce", "gke", "aws") By("creating PD") @@ -363,7 +363,7 @@ var _ = framework.KubeDescribe("Pod Disks", func() { waitForPDDetach(diskName, host0Name) }) - It("should schedule a pod w/two RW PDs both mounted to one container, write to PD, verify contents, delete pod, recreate pod, verify contents, and repeat in rapid succession [Slow]", func() { + It("should schedule a pod w/two RW PDs both mounted to one container, write to PD, verify contents, delete pod, recreate pod, verify contents, and repeat in rapid succession [Slow] [Volume]", func() { framework.SkipUnlessProviderIs("gce", "gke", "aws") By("creating PD1") @@ -423,7 +423,7 @@ var _ = framework.KubeDescribe("Pod Disks", func() { waitForPDDetach(disk2Name, host0Name) }) - It("should be able to detach from a node which was deleted [Slow] [Disruptive]", func() { + It("should be able to detach from a node which was deleted [Slow] [Disruptive] [Volume]", func() { framework.SkipUnlessProviderIs("gce") initialGroupSize, err := GroupSize(framework.TestContext.CloudConfig.NodeInstanceGroup) @@ -478,7 +478,7 @@ var _ = framework.KubeDescribe("Pod Disks", func() { return }) - It("should be able to detach from a node whose api object was deleted [Slow] [Disruptive]", func() { + It("should be able to detach from a node whose api object was deleted [Slow] [Disruptive] [Volume]", func() { framework.SkipUnlessProviderIs("gce") initialGroupSize, err := GroupSize(framework.TestContext.CloudConfig.NodeInstanceGroup) framework.ExpectNoError(err, "Error getting group size")