summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2021-04-12 21:22:07 -0400
committerJulian Berman <Julian@GrayVines.com>2021-04-12 21:22:07 -0400
commitd4c8c922758263891e0adfa2769c4f59966e61fb (patch)
tree5a532ed7436af8f55cb119283a7e99bf76fd800e
parent0d5e80a0c86835890ad01dd0ec1e7e3d2c0b3f28 (diff)
downloadjsonschema-d4c8c922758263891e0adfa2769c4f59966e61fb.tar.gz
Skip tests that actually rely on location-independent IDs.
-rw-r--r--jsonschema/tests/test_jsonschema_test_suite.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/jsonschema/tests/test_jsonschema_test_suite.py b/jsonschema/tests/test_jsonschema_test_suite.py
index 6f441ef..6ddb5d6 100644
--- a/jsonschema/tests/test_jsonschema_test_suite.py
+++ b/jsonschema/tests/test_jsonschema_test_suite.py
@@ -202,6 +202,16 @@ TestDraft4 = DRAFT4.to_unittest_testcase(
),
)(test)
or skip(
+ message=bug(371),
+ subject="id",
+ description="match $ref to id",
+ )(test)
+ or skip(
+ message=bug(371),
+ subject="id",
+ description="no match on enum or $ref to id",
+ )(test)
+ or skip(
message=bug(),
subject="refRemote",
case_description="base URI change - change folder in subschema",
@@ -279,6 +289,16 @@ TestDraft6 = DRAFT6.to_unittest_testcase(
),
)(test)
or skip(
+ message=bug(371),
+ subject="id",
+ description="match $ref to id",
+ )(test)
+ or skip(
+ message=bug(371),
+ subject="id",
+ description="no match on enum or $ref to id",
+ )(test)
+ or skip(
message=bug(),
subject="refRemote",
case_description="base URI change - change folder in subschema",
@@ -377,6 +397,16 @@ TestDraft7 = DRAFT7.to_unittest_testcase(
),
)(test)
or skip(
+ message=bug(371),
+ subject="id",
+ description="match $ref to id",
+ )(test)
+ or skip(
+ message=bug(371),
+ subject="id",
+ description="no match on enum or $ref to id",
+ )(test)
+ or skip(
message=bug(),
subject="refRemote",
case_description="base URI change - change folder in subschema",