We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0742f6f commit 487573eCopy full SHA for 487573e
tests/test_errors.py
@@ -1078,7 +1078,8 @@ def test_hide_input_in_json() -> None:
1078
1079
1080
@pytest.mark.skipif(
1081
- sys.version_info < (3, 9) and sys.implementation == 'pypy', reason='PyPy before 3.9 cannot pickle this correctly'
+ sys.version_info < (3, 9) and sys.implementation.name == 'pypy',
1082
+ reason='PyPy before 3.9 cannot pickle this correctly',
1083
)
1084
def test_validation_error_pickle() -> None:
1085
s = SchemaValidator({'type': 'int'})
0 commit comments