From 93d6ac8556190e41e6f5ca4cce3e19afc2fd5dc7 Mon Sep 17 00:00:00 2001 From: Isaac Hollander McCreery Date: Thu, 14 Jan 2016 15:43:41 -0800 Subject: [PATCH] Skip [Feature:.+] instead of [Feature] --- test/e2e/e2e_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/e2e_test.go b/test/e2e/e2e_test.go index 802b01097b4..7b5df104b7d 100644 --- a/test/e2e/e2e_test.go +++ b/test/e2e/e2e_test.go @@ -148,7 +148,7 @@ func TestE2E(t *testing.T) { // Disable skipped tests unless they are explicitly requested. if config.GinkgoConfig.FocusString == "" && config.GinkgoConfig.SkipString == "" { // TODO(ihmccreery) Remove [Skipped] once all [Skipped] labels have been reclassified. - config.GinkgoConfig.SkipString = `\[Flaky\]|\[Skipped\]|\[Feature\]` + config.GinkgoConfig.SkipString = `\[Flaky\]|\[Skipped\]|\[Feature:.+\]` } gomega.RegisterFailHandler(ginkgo.Fail)