Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions pkg/testsuites/standard_suites.go
Original file line number Diff line number Diff line change
Expand Up @@ -450,4 +450,21 @@ var staticSuites = []ginkgo.TestSuite{
TestTimeout: 120 * time.Minute,
ClusterStabilityDuringTest: ginkgo.Disruptive,
},
{
Name: "openshift/disruptive-longrunning",
Description: templates.LongDesc(`
Long-running disruptive test suite. Tests in this suite are disruptive (cause node reboots,
configuration changes, or cluster-wide disruptions) and take significant time to complete.
Multiple teams can use this suite for their long-running disruptive tests.
`),
Matches: func(name string) bool {
if isDisabled(name) {
return false
}
return strings.Contains(name, "[Suite:openshift/disruptive-longrunning")
},
Parallelism: 1,
TestTimeout: 40 * time.Minute,
ClusterStabilityDuringTest: ginkgo.Disruptive,
},
}