diff options
-rw-r--r-- | tests/test_arcs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 9ea386af..fdd38bf8 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -14,9 +14,10 @@ from coverage.files import abs_file skip_cpython_92236 = pytest.mark.skipif( - env.PYVERSION >= (3, 11, 0, "beta"), + env.PYVERSION == (3, 11, 0, "beta", 1, 0), reason="Avoid a CPython bug: https://github.com/python/cpython/issues/92236", # #92236 is fixed in https://github.com/python/cpython/pull/92722 + # and in https://github.com/python/cpython/pull/92772 ) class SimpleArcTest(CoverageTest): |