@@ -164,6 +164,16 @@ def leap_second(test):
164164 narrow_unicode_build (test )
165165 or missing_format (draft3_format_checker )(test )
166166 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 )
167177 or skip (
168178 message = bug (371 ),
169179 subject = "ref" ,
@@ -190,6 +200,16 @@ def leap_second(test):
190200 or leap_second (test )
191201 or missing_format (draft4_format_checker )(test )
192202 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 )
193213 or skip (
194214 message = bug (),
195215 subject = "ref" ,
@@ -251,6 +271,16 @@ def leap_second(test):
251271 or leap_second (test )
252272 or missing_format (draft6_format_checker )(test )
253273 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 )
254284 or skip (
255285 message = bug (371 ),
256286 subject = "ref" ,
@@ -290,6 +320,16 @@ def leap_second(test):
290320 or leap_second (test )
291321 or missing_format (draft7_format_checker )(test )
292322 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 )
293333 or skip (
294334 message = bug (371 ),
295335 subject = "ref" ,
@@ -356,6 +396,16 @@ def leap_second(test):
356396 message = "unevaluatedItems is different in 2019-09 (needs work)." ,
357397 subject = "unevaluatedItems" ,
358398 )(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 )
359409 or skip (
360410 message = "dynamicRef support isn't working yet." ,
361411 subject = "recursiveRef" ,
@@ -400,6 +450,16 @@ def leap_second(test):
400450 Validator = Draft202012Validator ,
401451 skip = lambda test : (
402452 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 )
403463 or skip (
404464 message = "dynamicRef support isn't working yet." ,
405465 subject = "dynamicRef" ,
0 commit comments