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 1b4c939 commit 9b4ef40Copy full SHA for 9b4ef40
tests/test_config_validation/test_global_config.py
@@ -120,6 +120,33 @@ def fixture_override_master_config_file(tmp_path):
120
"disable-multi-platform: Input should be a valid boolean, unable to interpret input (bool_parsing)"
121
],
122
),
123
+ (
124
+ """
125
+ platform-builders:
126
+ linux/amd64:
127
+ - builder1
128
+ - builder2
129
+ linux/arm64:
130
+ - builder3
131
+ """,
132
+ [],
133
+ ),
134
135
136
137
+ linux/amd64: builder2
138
+ linux/arm64: builder3
139
140
141
142
143
144
145
146
147
148
+ ["platform-builders: Input should be a valid dictionary (dict_type)"],
149
150
151
)
152
def test_config_data(
0 commit comments