diff options
Diffstat (limited to 'tests/helpers.py')
-rw-r--r-- | tests/helpers.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/helpers.py b/tests/helpers.py index 725bd340..40c5f095 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -317,7 +317,8 @@ def swallow_warnings(message=r".", category=CoverageWarning): warnings.filterwarnings("ignore", category=category, message=message) yield + 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", + env.PYPY and env.PYVERSION[:2] == (3, 8) and env.PYPYVERSION < (7, 3, 11), + reason="These tests fail on older PyPy 3.8", ) |