Skip to content

Commit cb09fd5

Browse files
Merge pull request #1137 from kuiwang02/migratecase
OCPQE-30679: Continue migration of OLM v0 test cases from tests-private to tests-extension
2 parents 2d3fe10 + 7cddac0 commit cb09fd5

File tree

11 files changed

+4366
-52
lines changed

11 files changed

+4366
-52
lines changed

tests-extension/.openshift-tests-extension/openshift_payload_olmv0.json

Lines changed: 607 additions & 44 deletions
Large diffs are not rendered by default.

tests-extension/cmd/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ func main() {
215215
specs = specs.Walk(func(spec *et.ExtensionTestSpec) {
216216
if spec.Labels.Has("Extended") {
217217
// Change blocking tests to informing unless marked as ReleaseGate
218-
if !spec.Labels.Has("ReleaseGate") && spec.Lifecycle == "blocking" {
219-
spec.Lifecycle = "informing"
220-
}
218+
// if !spec.Labels.Has("ReleaseGate") && spec.Lifecycle == "blocking" {
219+
// spec.Lifecycle = "informing"
220+
// }
221221
// Exclude External topology for NonHyperShiftHOST tests
222222
if spec.Labels.Has("NonHyperShiftHOST") {
223223
spec.Exclude(et.TopologyEquals("External"))

tests-extension/pkg/bindata/qe/bindata.go

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests-extension/test/qe/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ We need to identify all cases from tests-private among all cases, then mark whic
3636
g.It("xxxxxx", g.Label("ReleaseGate"), func() {
3737
```
3838
- This makes the case equivalent to origin cases for openshift-tests
39-
- Test framework automatically sets these cases without `ReleaseGate` as `Informing`
4039
- For the cases with `ReleaseGate` that need `Informing`, add:
4140
```go
4241
import oteg "github.com/openshift-eng/openshift-tests-extension/pkg/ginkgo"

0 commit comments

Comments
 (0)