@@ -159,7 +159,9 @@ def leap_second(test):
159
159
DRAFT4 .tests (),
160
160
DRAFT4 .format_tests (),
161
161
DRAFT4 .optional_tests_of (name = "bignum" ),
162
+ DRAFT4 .optional_tests_of (name = "float-overflow" ),
162
163
DRAFT4 .optional_tests_of (name = "non-bmp-regex" ),
164
+ DRAFT4 .optional_tests_of (name = "unicode" ),
163
165
DRAFT4 .optional_tests_of (name = "zeroTerminatedFloats" ),
164
166
Validator = Draft4Validator ,
165
167
format_checker = draft4_format_checker ,
@@ -224,7 +226,9 @@ def leap_second(test):
224
226
DRAFT6 .tests (),
225
227
DRAFT6 .format_tests (),
226
228
DRAFT6 .optional_tests_of (name = "bignum" ),
229
+ DRAFT6 .optional_tests_of (name = "float-overflow" ),
227
230
DRAFT6 .optional_tests_of (name = "non-bmp-regex" ),
231
+ DRAFT7 .optional_tests_of (name = "unicode" ),
228
232
Validator = Draft6Validator ,
229
233
format_checker = draft6_format_checker ,
230
234
skip = lambda test : (
@@ -306,7 +310,9 @@ def leap_second(test):
306
310
DRAFT7 .format_tests (),
307
311
DRAFT7 .optional_tests_of (name = "bignum" ),
308
312
DRAFT7 .optional_tests_of (name = "content" ),
313
+ DRAFT7 .optional_tests_of (name = "float-overflow" ),
309
314
DRAFT7 .optional_tests_of (name = "non-bmp-regex" ),
315
+ DRAFT7 .optional_tests_of (name = "unicode" ),
310
316
Validator = Draft7Validator ,
311
317
format_checker = draft7_format_checker ,
312
318
skip = lambda test : (
@@ -412,6 +418,7 @@ def leap_second(test):
412
418
DRAFT201909 .optional_tests_of (name = "float-overflow" ),
413
419
DRAFT201909 .optional_tests_of (name = "non-bmp-regex" ),
414
420
DRAFT201909 .optional_tests_of (name = "refOfUnknownKeyword" ),
421
+ DRAFT201909 .optional_tests_of (name = "unicode" ),
415
422
Validator = Draft201909Validator ,
416
423
skip = lambda test : (
417
424
skip (
@@ -447,6 +454,7 @@ def leap_second(test):
447
454
DRAFT202012 .optional_tests_of (name = "float-overflow" ),
448
455
DRAFT202012 .optional_tests_of (name = "non-bmp-regex" ),
449
456
DRAFT202012 .optional_tests_of (name = "refOfUnknownKeyword" ),
457
+ DRAFT202012 .optional_tests_of (name = "unicode" ),
450
458
Validator = Draft202012Validator ,
451
459
skip = lambda test : (
452
460
narrow_unicode_build (test )
0 commit comments