Allow disruptive conformance tests and marks 2

- Adjusts tooling to allow disrutpive tests to be marked conformance
 - Updates the corresponding tests
 - Marks 2 tests as disruptive
This commit is contained in:
John Schnake
2019-09-12 14:31:37 -05:00
parent 06fc5b7f17
commit d0ab1f06fb
3 changed files with 8 additions and 12 deletions

View File

@@ -44,7 +44,7 @@ var (
totalConfTests, totalLegacyTests, missingComments int
// If a test name contains any of these tags, it is ineligble for promotion to conformance
regexIneligibleTags = regexp.MustCompile(`\[(Alpha|Disruptive|Feature:[^\]]+|Flaky)\]`)
regexIneligibleTags = regexp.MustCompile(`\[(Alpha|Feature:[^\]]+|Flaky)\]`)
)
const regexDescribe = "Describe|KubeDescribe|SIGDescribe"