summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2021-11-03 18:40:29 -0400
committerJulian Berman <Julian@GrayVines.com>2021-11-03 18:40:29 -0400
commited4693ca07c912f7640997f67401d31076959081 (patch)
treef87825b711db1351aded9c618d5f94f1ca80faae
parent1c6c965bca748d8e55674c17b79bd5ea6386933b (diff)
downloadjsonschema-ed4693ca07c912f7640997f67401d31076959081.tar.gz
Temporarily skip the failing tests from #866.
-rw-r--r--jsonschema/tests/test_jsonschema_test_suite.py60
1 files changed, 60 insertions, 0 deletions
diff --git a/jsonschema/tests/test_jsonschema_test_suite.py b/jsonschema/tests/test_jsonschema_test_suite.py
index da46cf3..695009d 100644
--- a/jsonschema/tests/test_jsonschema_test_suite.py
+++ b/jsonschema/tests/test_jsonschema_test_suite.py
@@ -165,6 +165,16 @@ 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=(
@@ -191,6 +201,16 @@ 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",
@@ -252,6 +272,16 @@ 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=(
@@ -291,6 +321,16 @@ 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=(
@@ -357,6 +397,16 @@ 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)
@@ -401,6 +451,16 @@ 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)