summaryrefslogtreecommitdiff
path: root/tests/helpers.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-12-27 06:57:18 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-12-27 07:20:49 -0500
commit5af6270dd72f2a217823a32bf7141d3f7c1a2a92 (patch)
treeedf3c7dc2a3f71ca31a8269b387e7f08ebdf49b9 /tests/helpers.py
parent769ea88198e15d4c549ed57b41abc6b996be68c1 (diff)
downloadpython-coveragepy-git-5af6270dd72f2a217823a32bf7141d3f7c1a2a92.tar.gz
fix: adjust some PyPy behaviors. #1515
Diffstat (limited to 'tests/helpers.py')
-rw-r--r--tests/helpers.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/helpers.py b/tests/helpers.py
index fbdf1397..725bd340 100644
--- a/tests/helpers.py
+++ b/tests/helpers.py
@@ -317,8 +317,7 @@ def swallow_warnings(message=r".", category=CoverageWarning):
warnings.filterwarnings("ignore", category=category, message=message)
yield
-
-xfail_pypy_3749 = pytest.mark.xfail(
- env.PYVERSION[:2] == (3, 8) and env.PYPY and env.PYPYVERSION >= (7, 3, 10),
- reason="Avoid a PyPy bug: https://foss.heptapod.net/pypy/pypy/-/issues/3749",
+xfail_pypy38 = pytest.mark.xfail(
+ env.PYVERSION[:2] == (3, 8) and env.PYPY,
+ reason="Not sure why these few tests fail on PyPy 3.8 still",
)