Merge pull request #19673 from ihmccreery/feature-volumes

Mark Volumes and PersistentVolumes as [Feature:Volumes] instead of [Skipped]
This commit is contained in:
Alex Mohr 2016-01-21 14:25:06 -08:00
commit 7742c6c78e
2 changed files with 6 additions and 8 deletions

View File

@ -28,10 +28,9 @@ import (
client "k8s.io/kubernetes/pkg/client/unversioned" client "k8s.io/kubernetes/pkg/client/unversioned"
) )
// Marked with [Skipped] to skip the test by default (see driver.go), // This test needs privileged containers, which are disabled by default. Run
// the test needs privileged containers, which are disabled by default. // the test with "go run hack/e2e.go ... --ginkgo.focus=[Feature:Volumes]"
// Run the test with "go run hack/e2e.go ... --ginkgo.focus=PersistentVolume" var _ = Describe("PersistentVolumes [Feature:Volumes]", func() {
var _ = Describe("PersistentVolumes [Skipped]", func() {
framework := NewFramework("pv") framework := NewFramework("pv")
var c *client.Client var c *client.Client
var ns string var ns string

View File

@ -326,10 +326,9 @@ func deleteCinderVolume(name string) error {
return err return err
} }
// Marked with [Skipped] to skip the test by default (see driver.go), // These tests need privileged containers, which are disabled by default. Run
// these tests needs privileged containers, which are disabled by default. // the test with "go run hack/e2e.go ... --ginkgo.focus=[Feature:Volumes]"
// Run the test with "go run hack/e2e.go ... --ginkgo.focus=Volume" var _ = Describe("Volumes [Feature:Volumes]", func() {
var _ = Describe("Volumes [Skipped]", func() {
framework := NewFramework("volume") framework := NewFramework("volume")
// If 'false', the test won't clear its volumes upon completion. Useful for debugging, // If 'false', the test won't clear its volumes upon completion. Useful for debugging,