Skip to content

Commit

Permalink
And now skip the newly merged location independent identifier tests.
Browse files Browse the repository at this point in the history
See #371 to fix the underlying issue.
  • Loading branch information
Julian committed Jun 30, 2019
1 parent 7e75b30 commit 94ac7a1
Showing 1 changed file with 46 additions and 1 deletion.
47 changes: 46 additions & 1 deletion jsonschema/tests/test_jsonschema_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def narrow_unicode_build(test): # pragma: no cover
def bug(issue=None):
message = "A known bug."
if issue is not None:
message += " See issue #{issue}".format(issue=issue)
message += " See issue #{issue}.".format(issue=issue)
return message


Expand Down Expand Up @@ -100,6 +100,21 @@ def bug(issue=None):
subject="ref",
case_description="Recursive references between schemas",
)(test)
or skip(
message=bug(371),
subject="ref",
case_description="Location-independent identifier",
)(test)
or skip(
message=bug(371),
subject="ref",
case_description="Location-independent identifier with absolute URI",
)(test)
or skip(
message=bug(371),
subject="ref",
case_description="Location-independent identifier with base URI change in subschema",
)(test)
or skip(
message=bug(),
subject="refRemote",
Expand Down Expand Up @@ -134,6 +149,21 @@ def bug(issue=None):
subject="ref",
case_description="Recursive references between schemas",
)(test)
or skip(
message=bug(371),
subject="ref",
case_description="Location-independent identifier",
)(test)
or skip(
message=bug(371),
subject="ref",
case_description="Location-independent identifier with absolute URI",
)(test)
or skip(
message=bug(371),
subject="ref",
case_description="Location-independent identifier with base URI change in subschema",
)(test)
or skip(
message=bug(),
subject="refRemote",
Expand Down Expand Up @@ -168,6 +198,21 @@ def bug(issue=None):
subject="ref",
case_description="Recursive references between schemas",
)(test)
or skip(
message=bug(371),
subject="ref",
case_description="Location-independent identifier",
)(test)
or skip(
message=bug(371),
subject="ref",
case_description="Location-independent identifier with absolute URI",
)(test)
or skip(
message=bug(371),
subject="ref",
case_description="Location-independent identifier with base URI change in subschema",
)(test)
or skip(
message=bug(),
subject="refRemote",
Expand Down

0 comments on commit 94ac7a1

Please sign in to comment.