Skip to content

Commit b3b8501

Browse files
committed
use sys.pypy_version_info for skipif
1 parent 074dfd6 commit b3b8501

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_make.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,9 +396,8 @@ class B:
396396
assert_dump_load(schema=schema, loaded=loaded, dumped=dumped)
397397

398398

399-
# where 3.6.9 corresponds to PyPy3 release 7.2.0
400399
@pytest.mark.skipif(
401-
condition=sys.implementation.name == "pypy" and sys.version_info < (3, 6, 9),
400+
condition=sys.implementation.name == "pypy" and sys.pypy_version_info < (7, 2, 0),
402401
reason="Forward references and string annotations are broken.",
403402
)
404403
def test_forward_reference_module_scope():

0 commit comments

Comments
 (0)