Skip to content

Commit

Permalink
Skip more more new leap second tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed Oct 19, 2021
1 parent d837e97 commit 8406a3b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions jsonschema/tests/test_jsonschema_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,14 @@ def leap_second(test):
message=message,
subject="time",
description="valid leap second, zero time-offset",
)(test) or skip(
message=message,
subject="date-time",
description="a valid date-time with a leap second, UTC",
)(test) or skip(
message=message,
subject="date-time",
description="a valid date-time with a leap second, with minus offset",
)(test)


Expand Down Expand Up @@ -179,6 +187,7 @@ def leap_second(test):
skip=lambda test: (
narrow_unicode_build(test)
or allowed_leading_zeros(test)
or leap_second(test)
or missing_format(draft4_format_checker)(test)
or complex_email_validation(test)
or skip(
Expand Down Expand Up @@ -239,6 +248,7 @@ def leap_second(test):
skip=lambda test: (
narrow_unicode_build(test)
or allowed_leading_zeros(test)
or leap_second(test)
or missing_format(draft6_format_checker)(test)
or complex_email_validation(test)
or skip(
Expand Down

0 comments on commit 8406a3b

Please sign in to comment.