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 5a8be4d + fc89fa3 commit 35d8bd1Copy full SHA for 35d8bd1
.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
@@ -433,6 +433,11 @@ class B:
433
assert_dump_load(schema=schema, loaded=loaded, dumped=dumped)
434
435
436
+@pytest.mark.xfail(
437
+ condition=sys.implementation.name == "pypy" and sys.pypy_version_info < (7, 2),
438
+ reason="Forward references and string annotations are broken in PyPy3 < 7.2",
439
+ strict=True,
440
+)
441
def test_forward_reference_module_scope():
442
"""Run the forward reference test at global scope."""
443
0 commit comments