Skip to content

Commit

Permalink
Temporarily skip the failing tests from #866.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed Nov 3, 2021
1 parent 1c6c965 commit ed4693c
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions jsonschema/tests/test_jsonschema_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,16 @@ def leap_second(test):
narrow_unicode_build(test)
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",
Expand All @@ -190,6 +200,16 @@ def leap_second(test):
or leap_second(test)
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",
Expand Down Expand Up @@ -251,6 +271,16 @@ def leap_second(test):
or leap_second(test)
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",
Expand Down Expand Up @@ -290,6 +320,16 @@ def leap_second(test):
or leap_second(test)
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",
Expand Down Expand Up @@ -356,6 +396,16 @@ def leap_second(test):
message="unevaluatedItems is different in 2019-09 (needs work).",
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",
Expand Down Expand Up @@ -400,6 +450,16 @@ def leap_second(test):
Validator=Draft202012Validator,
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",
Expand Down

0 comments on commit ed4693c

Please sign in to comment.