We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89c53ef commit 89e5a3aCopy full SHA for 89e5a3a
pkg/clioptions/suiteselection/feature_filter.go
@@ -70,7 +70,11 @@ func (f *featureGateFilter) includeTest(name string) bool {
70
return false
71
}
72
73
- return f.enabled.HasAll(featureGates...)
+ // It is important that we always return true if we don't know the status of the gate.
74
+ // This generally means we have no opinion on whether the feature is on or off.
75
+ // We expect the default case to be on, as this is what would happen after a feature is promoted,
76
+ // and the gate is removed.
77
+ return true
78
79
80
func includeNonFeatureGateTest(name string) bool {
0 commit comments