File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,7 @@ type Do = {
122
122
ApiCall: string * YamlMap
123
123
Catch: DoCatch option
124
124
Warnings: option < string list >
125
+ AllowedWarnings: option < string list >
125
126
NodeSelector: NodeSelector option
126
127
Headers: Headers option
127
128
AutoFail: bool
Original file line number Diff line number Diff line change @@ -158,14 +158,11 @@ let SkipList = dict<SkipFile,SkipSection> [
158
158
//These are ignored because they were flagged on a big PR.
159
159
160
160
//additional enters in regex
161
- SkipFile " cat.templates/10_basic.yml" , Sections [ " Multiple template" ; " Sort templates" ]
161
+ SkipFile " cat.templates/10_basic.yml" , Sections [ " Multiple template" ; " Sort templates" ; " No templates " ]
162
162
163
163
//Replace stashed value in body that is passed as string json
164
164
SkipFile " api_key/10_basic.yml" , Section " Test get api key"
165
-
166
- //additional enters in regex
167
- SkipFile " cat.templates/10_basic.yml" , Sections [ " Multiple template" ; " Sort templates" ]
168
-
165
+
169
166
//new API TODO remove when we regenerate
170
167
SkipFile " cluster.voting_config_exclusions/10_basic.yml" , All
171
168
@@ -184,6 +181,9 @@ let SkipList = dict<SkipFile,SkipSection> [
184
181
185
182
SkipFile " ml/inference_processor.yml" , Section " Test simulate"
186
183
184
+ // TODO investigate post 7.11.0
185
+ SkipFile " nodes.info/10_basic.yml" , Section " node_info role test"
186
+
187
187
]
188
188
189
189
Original file line number Diff line number Diff line change @@ -150,6 +150,8 @@ let private mapDo section (operation:YamlMap) =
150
150
| None -> None
151
151
152
152
let warnings = tryPickList< string, string> operation " warnings" id
153
+ // TODO: we don't support this feature yet but do parse it out so we don't crash our yaml parser
154
+ let allowedWarnings = tryPickList< string, string> operation " allowed_warnings" id
153
155
let nodeSelector = mapNodeSelector operation
154
156
155
157
let last = operation.Last()
@@ -161,6 +163,7 @@ let private mapDo section (operation:YamlMap) =
161
163
ApiCall = ( lastKey, lastValue)
162
164
Catch = catch
163
165
Warnings = warnings
166
+ AllowedWarnings = allowedWarnings
164
167
NodeSelector = nodeSelector
165
168
Headers = headers
166
169
AutoFail = match section with | " setup" | " teardown" -> false | _ -> false
You can’t perform that action at this time.
0 commit comments