Skip to content

Commit

Permalink
Add skip reason
Browse files Browse the repository at this point in the history
  • Loading branch information
dkraczkowski committed May 28, 2024
1 parent b0f7264 commit ee0ab80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ class Pet:
pet = decode(pet_data, Pet)


@pytest.mark.skipif(sys.version_info >= (3, 10))
@pytest.mark.skipif(sys.version_info >= (3, 10), reason="Unsupported python version")
def test_can_decode_new_optional_type_notation() -> None:
# given
@decodable
Expand Down
2 changes: 1 addition & 1 deletion tests/test_encode.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def test_can_encode_regex_with_flags_into_string() -> None:
assert result == f"/{pattern_str}/imsx"


@pytest.mark.skipif(sys.version_info >= (3, 10))
@pytest.mark.skipif(sys.version_info >= (3, 10), reason="Unsupported python version")
def test_can_encode_new_optional_type_notation() -> None:
# given
@encodable
Expand Down

0 comments on commit ee0ab80

Please sign in to comment.