Skip to content

Commit

Permalink
Skip the failing #575 tests until it's fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed Jul 26, 2019
1 parent a39ed5a commit 76a6c52
Showing 1 changed file with 100 additions and 0 deletions.
100 changes: 100 additions & 0 deletions jsonschema/tests/test_jsonschema_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,26 @@ def bug(issue=None):
skip=lambda test: (
narrow_unicode_build(test)
or missing_format(draft4_format_checker)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with true does not match 1",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with false does not match 0",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with 1 does not match true",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with 0 does not match false",
)(test)
or skip(
message=bug(),
subject="ref",
Expand Down Expand Up @@ -154,6 +174,46 @@ def bug(issue=None):
skip=lambda test: (
narrow_unicode_build(test)
or missing_format(draft6_format_checker)(test)
or skip(
message=bug(575),
subject="const",
case_description="const with true does not match 1",
)(test)
or skip(
message=bug(575),
subject="const",
case_description="const with false does not match 0",
)(test)
or skip(
message=bug(575),
subject="const",
case_description="const with 1 does not match true",
)(test)
or skip(
message=bug(575),
subject="const",
case_description="const with 0 does not match false",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with true does not match 1",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with false does not match 0",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with 1 does not match true",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with 0 does not match false",
)(test)
or skip(
message=bug(),
subject="ref",
Expand Down Expand Up @@ -207,6 +267,46 @@ def bug(issue=None):
skip=lambda test: (
narrow_unicode_build(test)
or missing_format(draft7_format_checker)(test)
or skip(
message=bug(575),
subject="const",
case_description="const with true does not match 1",
)(test)
or skip(
message=bug(575),
subject="const",
case_description="const with false does not match 0",
)(test)
or skip(
message=bug(575),
subject="const",
case_description="const with 1 does not match true",
)(test)
or skip(
message=bug(575),
subject="const",
case_description="const with 0 does not match false",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with true does not match 1",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with false does not match 0",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with 1 does not match true",
)(test)
or skip(
message=bug(575),
subject="enum",
case_description="enum with 0 does not match false",
)(test)
or skip(
message=bug(),
subject="ref",
Expand Down

0 comments on commit 76a6c52

Please sign in to comment.