Skip to content

Commit 3736449

Browse files
committed
test: Create conformance serial test suite
For more information regarding test labels, see [1, 2] [1]: https://github.com/openshift/origin/tree/main/test/extended#test-labels [2]: Integration Guide for OpenShift Tests Extension
1 parent 8e312d4 commit 3736449

File tree

1 file changed

+9
-0
lines changed
  • cmd/cluster-version-operator-tests

1 file changed

+9
-0
lines changed

cmd/cluster-version-operator-tests/main.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,15 @@ func main() {
2828
},
2929
})
3030

31+
// Serial tests run in isolation, however they must return the cluster to its original state upon exiting.
32+
ext.AddSuite(extension.Suite{
33+
Name: "openshift/cluster-version-operator/conformance/serial",
34+
Parents: []string{"openshift/conformance/serial"},
35+
Qualifiers: []string{
36+
`name.contains("[Serial]")`,
37+
},
38+
})
39+
3140
specs, err := g.BuildExtensionTestSpecsFromOpenShiftGinkgoSuite()
3241
if err != nil {
3342
panic(fmt.Sprintf("couldn't build extension test specs from ginkgo: %+v", err.Error()))

0 commit comments

Comments
 (0)