diff options
author | Julian Berman <Julian@GrayVines.com> | 2020-05-02 16:07:09 -0400 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2020-05-02 16:07:09 -0400 |
commit | 2b3544c1d496f5ccae64a87754e47bdd4b64b240 (patch) | |
tree | 517e92d67105935a0ffb411cf71476f2ec18224a /jsonschema/tests | |
parent | 1fae89b3cec5c018e86a8aa14f394543fd18d2d6 (diff) | |
download | jsonschema-2b3544c1d496f5ccae64a87754e47bdd4b64b240.tar.gz |
non-bmp-regex moved to optional
Diffstat (limited to 'jsonschema/tests')
-rw-r--r-- | jsonschema/tests/test_jsonschema_test_suite.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/jsonschema/tests/test_jsonschema_test_suite.py b/jsonschema/tests/test_jsonschema_test_suite.py index 91affde..27abcce 100644 --- a/jsonschema/tests/test_jsonschema_test_suite.py +++ b/jsonschema/tests/test_jsonschema_test_suite.py @@ -70,6 +70,7 @@ TestDraft3 = DRAFT3.to_unittest_testcase( DRAFT3.tests(), DRAFT3.optional_tests_of(name="bignum"), DRAFT3.optional_tests_of(name="format"), + DRAFT3.optional_tests_of(name="non-bmp-regex"), DRAFT3.optional_tests_of(name="zeroTerminatedFloats"), Validator=Draft3Validator, format_checker=draft3_format_checker, @@ -89,6 +90,7 @@ TestDraft4 = DRAFT4.to_unittest_testcase( DRAFT4.tests(), DRAFT4.optional_tests_of(name="bignum"), DRAFT4.optional_tests_of(name="format"), + DRAFT4.optional_tests_of(name="non-bmp-regex"), DRAFT4.optional_tests_of(name="zeroTerminatedFloats"), Validator=Draft4Validator, format_checker=draft4_format_checker, @@ -137,6 +139,7 @@ TestDraft6 = DRAFT6.to_unittest_testcase( DRAFT6.tests(), DRAFT6.optional_tests_of(name="bignum"), DRAFT6.optional_tests_of(name="format"), + DRAFT6.optional_tests_of(name="non-bmp-regex"), Validator=Draft6Validator, format_checker=draft6_format_checker, skip=lambda test: ( @@ -185,6 +188,7 @@ TestDraft7 = DRAFT7.to_unittest_testcase( DRAFT7.format_tests(), DRAFT7.optional_tests_of(name="bignum"), DRAFT7.optional_tests_of(name="content"), + DRAFT7.optional_tests_of(name="non-bmp-regex"), Validator=Draft7Validator, format_checker=draft7_format_checker, skip=lambda test: ( |