diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-05-13 06:52:07 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-05-13 06:52:07 -0400 |
commit | 6697d044128d58c462b20867f4008225ff7ed9fc (patch) | |
tree | 8a60e91ed26a9d35dd66704e0981dac6d309a367 | |
parent | da048a63190639b276650a32f456a4f9ff83d607 (diff) | |
download | python-coveragepy-git-6697d044128d58c462b20867f4008225ff7ed9fc.tar.gz |
test: CPython #92236 is fixed for 3.11.0b2
-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): |