From d408adb924eb238138d9d4b6f8e68100538bb1ac Mon Sep 17 00:00:00 2001 From: Yu Qi Zhang Date: Thu, 15 May 2025 19:31:00 -0400 Subject: [PATCH] Add new MCO disruptive suite Add an empty MCO suite, for testing purposes. Future tests will be moved over from serial and added via MCO OTE. --- pkg/testsuites/standard_suites.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkg/testsuites/standard_suites.go b/pkg/testsuites/standard_suites.go index 2ed7e328d3d0..59d27f9fa9e9 100644 --- a/pkg/testsuites/standard_suites.go +++ b/pkg/testsuites/standard_suites.go @@ -449,4 +449,17 @@ var staticSuites = []ginkgo.TestSuite{ }, TestTimeout: 60 * time.Minute, }, + { + Name: "openshift/machine-config-operator/disruptive", + Description: templates.LongDesc(` + This test suite runs tests to validate machine-config-operator functionality. + `), + Matches: func(name string) bool { + if isDisabled(name) { + return false + } + return strings.Contains(name, "[Suite:openshift/machine-config-operator/disruptive") + }, + TestTimeout: 120 * time.Minute, + }, }