diff options
author | DrGFreeman <DrGFreeman@users.noreply.github.com> | 2021-11-03 19:47:43 -0400 |
---|---|---|
committer | DrGFreeman <DrGFreeman@users.noreply.github.com> | 2021-11-03 19:47:43 -0400 |
commit | 64622fd8909ee9d57041c2ef18c29b51ca7f40a9 (patch) | |
tree | 812454a8645925310c166c682fd75d943002ab99 /jsonschema | |
parent | ed4693ca07c912f7640997f67401d31076959081 (diff) | |
download | jsonschema-64622fd8909ee9d57041c2ef18c29b51ca7f40a9.tar.gz |
Revert "Temporarily skip the failing tests from #866."
This reverts commit ed4693ca07c912f7640997f67401d31076959081.
Diffstat (limited to 'jsonschema')
-rw-r--r-- | jsonschema/tests/test_jsonschema_test_suite.py | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/jsonschema/tests/test_jsonschema_test_suite.py b/jsonschema/tests/test_jsonschema_test_suite.py index 695009d..da46cf3 100644 --- a/jsonschema/tests/test_jsonschema_test_suite.py +++ b/jsonschema/tests/test_jsonschema_test_suite.py @@ -165,16 +165,6 @@ TestDraft3 = DRAFT3.to_unittest_testcase( or missing_format(draft3_format_checker)(test) or complex_email_validation(test) or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of more than two arrays is invalid", - )(test) - or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of strings is invalid", - )(test) - or skip( message=bug(371), subject="ref", case_description=( @@ -201,16 +191,6 @@ TestDraft4 = DRAFT4.to_unittest_testcase( or missing_format(draft4_format_checker)(test) or complex_email_validation(test) or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of more than two arrays is invalid", - )(test) - or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of strings is invalid", - )(test) - or skip( message=bug(), subject="ref", case_description="Recursive references between schemas", @@ -272,16 +252,6 @@ TestDraft6 = DRAFT6.to_unittest_testcase( or missing_format(draft6_format_checker)(test) or complex_email_validation(test) or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of more than two arrays is invalid", - )(test) - or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of strings is invalid", - )(test) - or skip( message=bug(371), subject="ref", case_description=( @@ -321,16 +291,6 @@ TestDraft7 = DRAFT7.to_unittest_testcase( or missing_format(draft7_format_checker)(test) or complex_email_validation(test) or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of more than two arrays is invalid", - )(test) - or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of strings is invalid", - )(test) - or skip( message=bug(371), subject="ref", case_description=( @@ -397,16 +357,6 @@ TestDraft201909 = DRAFT201909.to_unittest_testcase( subject="unevaluatedItems", )(test) or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of more than two arrays is invalid", - )(test) - or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of strings is invalid", - )(test) - or skip( message="dynamicRef support isn't working yet.", subject="recursiveRef", )(test) @@ -451,16 +401,6 @@ TestDraft202012 = DRAFT202012.to_unittest_testcase( skip=lambda test: ( narrow_unicode_build(test) or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of more than two arrays is invalid", - )(test) - or skip( - message=bug(866), - subject="uniqueItems", - description="non-unique array of strings is invalid", - )(test) - or skip( message="dynamicRef support isn't working yet.", subject="dynamicRef", )(test) |