diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-01-30 07:01:29 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-02-06 11:09:53 -0500 |
commit | 82ae658412ede7519d6212724e45714f8daa765e (patch) | |
tree | a8fac1b911aacd7515dc665741a1d0965223b6dd /tests/test_coverage.py | |
parent | 87b2117f26677c21d7ffbf46b59b287183d4ca7a (diff) | |
download | python-coveragepy-git-82ae658412ede7519d6212724e45714f8daa765e.tar.gz |
test: adapt to PyPy 3.9 v7.8.8
Diffstat (limited to 'tests/test_coverage.py')
-rw-r--r-- | tests/test_coverage.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_coverage.py b/tests/test_coverage.py index fc4263de..a6d3ccae 100644 --- a/tests/test_coverage.py +++ b/tests/test_coverage.py @@ -1218,6 +1218,11 @@ class CompoundStatementTest(CoverageTest): reason="avoid class docstring bug: bpo 46331", # https://bugs.python.org/issue46331 ) + @pytest.mark.xfail( + env.PYPY and env.PYVERSION[:2] == (3, 9), + reason="avoid PyPy class docstring bug: 3665", + # https://foss.heptapod.net/pypy/pypy/-/issues/3665 + ) def test_class_def(self): arcz="-22 2D DE E-2 23 36 6A A-2 -68 8-6 -AB B-A" self.check_coverage("""\ |