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"
)
// Marked with [Skipped] to skip the test by default (see driver.go),
// the test needs privileged containers, which are disabled by default.
// Run the test with "go run hack/e2e.go ... --ginkgo.focus=PersistentVolume"
var _ = Describe("PersistentVolumes [Skipped]", func() {
// This test needs privileged containers, which are disabled by default. Run
// the test with "go run hack/e2e.go ... --ginkgo.focus=[Feature:Volumes]"
var _ = Describe("PersistentVolumes [Feature:Volumes]", func() {
framework := NewFramework("pv")
var c *client.Client
var ns string

View File

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