summaryrefslogtreecommitdiff
path: root/tests/test_arcs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r--tests/test_arcs.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py
index d19a6588..10157a77 100644
--- a/tests/test_arcs.py
+++ b/tests/test_arcs.py
@@ -1234,10 +1234,6 @@ class YieldTest(CoverageTest):
arcz=".1 14 45 54 4. .2 2. -22 2-2",
)
- @pytest.mark.skipif(
- ((3, 11, 0, "alpha", 4, 0) == env.PYVERSION) and not env.C_TRACER,
- reason="avoid a 3.11 bug: https://bugs.python.org/issue46389",
- )
def test_bug_324(self):
# This code is tricky: the list() call pulls all the values from gen(),
# but each of them is a generator itself that is never iterated. As a
@@ -1618,10 +1614,6 @@ class MiscArcTest(CoverageTest):
self.check_coverage(code, arcs=[(-1, 1), (1, 2*n+4), (2*n+4, -1)])
assert self.stdout() == f"{n}\n"
- @pytest.mark.skipif(
- ((3, 11, 0, "alpha", 4, 0) == env.PYVERSION) and not env.C_TRACER,
- reason="avoid a 3.11 bug: https://bugs.python.org/issue46389",
- )
def test_partial_generators(self):
# https://github.com/nedbat/coveragepy/issues/475
# Line 2 is executed completely.