Skip to content

Commit f9cba4b

Browse files
Merge pull request #29800 from yuqi-zhang/add-mco-disruptive-suite-only-suite
MCO-1652: Add new MCO disruptive suite
2 parents 57e5a5c + d408adb commit f9cba4b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

pkg/testsuites/standard_suites.go

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,4 +449,17 @@ var staticSuites = []ginkgo.TestSuite{
449449
},
450450
TestTimeout: 60 * time.Minute,
451451
},
452+
{
453+
Name: "openshift/machine-config-operator/disruptive",
454+
Description: templates.LongDesc(`
455+
This test suite runs tests to validate machine-config-operator functionality.
456+
`),
457+
Matches: func(name string) bool {
458+
if isDisabled(name) {
459+
return false
460+
}
461+
return strings.Contains(name, "[Suite:openshift/machine-config-operator/disruptive")
462+
},
463+
TestTimeout: 120 * time.Minute,
464+
},
452465
}

0 commit comments

Comments
 (0)