@@ -164,6 +164,16 @@ def leap_second(test):
164
164
narrow_unicode_build (test )
165
165
or missing_format (draft3_format_checker )(test )
166
166
or complex_email_validation (test )
167
+ or skip (
168
+ message = bug (866 ),
169
+ subject = "uniqueItems" ,
170
+ description = "non-unique array of more than two arrays is invalid" ,
171
+ )(test )
172
+ or skip (
173
+ message = bug (866 ),
174
+ subject = "uniqueItems" ,
175
+ description = "non-unique array of strings is invalid" ,
176
+ )(test )
167
177
or skip (
168
178
message = bug (371 ),
169
179
subject = "ref" ,
@@ -190,6 +200,16 @@ def leap_second(test):
190
200
or leap_second (test )
191
201
or missing_format (draft4_format_checker )(test )
192
202
or complex_email_validation (test )
203
+ or skip (
204
+ message = bug (866 ),
205
+ subject = "uniqueItems" ,
206
+ description = "non-unique array of more than two arrays is invalid" ,
207
+ )(test )
208
+ or skip (
209
+ message = bug (866 ),
210
+ subject = "uniqueItems" ,
211
+ description = "non-unique array of strings is invalid" ,
212
+ )(test )
193
213
or skip (
194
214
message = bug (),
195
215
subject = "ref" ,
@@ -251,6 +271,16 @@ def leap_second(test):
251
271
or leap_second (test )
252
272
or missing_format (draft6_format_checker )(test )
253
273
or complex_email_validation (test )
274
+ or skip (
275
+ message = bug (866 ),
276
+ subject = "uniqueItems" ,
277
+ description = "non-unique array of more than two arrays is invalid" ,
278
+ )(test )
279
+ or skip (
280
+ message = bug (866 ),
281
+ subject = "uniqueItems" ,
282
+ description = "non-unique array of strings is invalid" ,
283
+ )(test )
254
284
or skip (
255
285
message = bug (371 ),
256
286
subject = "ref" ,
@@ -290,6 +320,16 @@ def leap_second(test):
290
320
or leap_second (test )
291
321
or missing_format (draft7_format_checker )(test )
292
322
or complex_email_validation (test )
323
+ or skip (
324
+ message = bug (866 ),
325
+ subject = "uniqueItems" ,
326
+ description = "non-unique array of more than two arrays is invalid" ,
327
+ )(test )
328
+ or skip (
329
+ message = bug (866 ),
330
+ subject = "uniqueItems" ,
331
+ description = "non-unique array of strings is invalid" ,
332
+ )(test )
293
333
or skip (
294
334
message = bug (371 ),
295
335
subject = "ref" ,
@@ -356,6 +396,16 @@ def leap_second(test):
356
396
message = "unevaluatedItems is different in 2019-09 (needs work)." ,
357
397
subject = "unevaluatedItems" ,
358
398
)(test )
399
+ or skip (
400
+ message = bug (866 ),
401
+ subject = "uniqueItems" ,
402
+ description = "non-unique array of more than two arrays is invalid" ,
403
+ )(test )
404
+ or skip (
405
+ message = bug (866 ),
406
+ subject = "uniqueItems" ,
407
+ description = "non-unique array of strings is invalid" ,
408
+ )(test )
359
409
or skip (
360
410
message = "dynamicRef support isn't working yet." ,
361
411
subject = "recursiveRef" ,
@@ -400,6 +450,16 @@ def leap_second(test):
400
450
Validator = Draft202012Validator ,
401
451
skip = lambda test : (
402
452
narrow_unicode_build (test )
453
+ or skip (
454
+ message = bug (866 ),
455
+ subject = "uniqueItems" ,
456
+ description = "non-unique array of more than two arrays is invalid" ,
457
+ )(test )
458
+ or skip (
459
+ message = bug (866 ),
460
+ subject = "uniqueItems" ,
461
+ description = "non-unique array of strings is invalid" ,
462
+ )(test )
403
463
or skip (
404
464
message = "dynamicRef support isn't working yet." ,
405
465
subject = "dynamicRef" ,
0 commit comments