summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-05-13 06:52:07 -0400
committerNed Batchelder <ned@nedbatchelder.com>2022-05-13 06:52:07 -0400
commit6697d044128d58c462b20867f4008225ff7ed9fc (patch)
tree8a60e91ed26a9d35dd66704e0981dac6d309a367 /tests
parentda048a63190639b276650a32f456a4f9ff83d607 (diff)
downloadpython-coveragepy-git-6697d044128d58c462b20867f4008225ff7ed9fc.tar.gz
test: CPython #92236 is fixed for 3.11.0b2
Diffstat (limited to 'tests')
-rw-r--r--tests/test_arcs.py3
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):