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.
2 parents 6b30cd2 + bd31d31 commit fc89fa3Copy full SHA for fc89fa3
.travis.yml
@@ -54,6 +54,9 @@ jobs:
54
- python: '3.8'
55
env:
56
- TOXENV=py38,report,codecov
57
+ - python: 'pypy3'
58
+ env:
59
+ - TOXENV=pypy3,report,codecov
60
61
62
- TOXENV=doc
tests/test_make.py
@@ -396,6 +396,11 @@ class B:
396
assert_dump_load(schema=schema, loaded=loaded, dumped=dumped)
397
398
399
+@pytest.mark.xfail(
400
+ condition=sys.implementation.name == "pypy" and sys.pypy_version_info < (7, 2),
401
+ reason="Forward references and string annotations are broken in PyPy3 < 7.2",
402
+ strict=True,
403
+)
404
def test_forward_reference_module_scope():
405
"""Run the forward reference test at global scope."""
406
0 commit comments