-
Notifications
You must be signed in to change notification settings - Fork 35
OCPQE-31083: Update OwnSingle template to use inline.watchNamespace for QE cases #541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -219,9 +219,10 @@ func main() { | |
| specs = specs.Walk(func(spec *et.ExtensionTestSpec) { | ||
| if spec.Labels.Has("Extended") { | ||
| // Change blocking tests to informing unless marked as ReleaseGate | ||
| if !spec.Labels.Has("ReleaseGate") && spec.Lifecycle == "blocking" { | ||
| spec.Lifecycle = "informing" | ||
| } | ||
| // QE case becomes better so that we could try it | ||
| // if !spec.Labels.Has("ReleaseGate") && spec.Lifecycle == "blocking" { | ||
| // spec.Lifecycle = "informing" | ||
| // } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could we not merge code commented? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will like to keep it because we will monitor it. I will remove it after we approve the QE design in the future. |
||
| // Exclude External topology for NonHyperShiftHOST tests | ||
| if spec.Labels.Has("NonHyperShiftHOST") { | ||
| spec.Exclude(et.TopologyEquals("External")) | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it producing signal to Sippy?
Could we move all tests that will become a blocking to be centralised?
In this case, can we move any QE shaped test to : https://github.com/openshift/operator-framework-operator-controller/blob/main/openshift/tests-extension/test/
Also, are those scenarios that are not covered yet?
It would be great we ensure that we have not many tests covering the same.
Otherwise, it might start be hard for we keep things maintained.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is for QE case. it is different with case migrated from origin.