Skip to content

Commit 12333be

Browse files
committed
test: remove xfail for pypy bugs 3936 and 3937
1 parent 3fb8da5 commit 12333be

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

Diff for: tests/test_arcs.py

-12
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@
2424
reason="https://foss.heptapod.net/pypy/pypy/-/issues/3882",
2525
)
2626

27-
xfail_pypy_3936 = pytest.mark.xfail(
28-
env.PYPY and env.PYVERSION[:2] >= (3, 10),
29-
reason="https://foss.heptapod.net/pypy/pypy/-/issues/3936",
30-
)
31-
3227
class SimpleArcTest(CoverageTest):
3328
"""Tests for coverage.py's arc measurement."""
3429

@@ -1329,7 +1324,6 @@ def gen():
13291324
@pytest.mark.skipif(not env.PYBEHAVIOR.match_case, reason="Match-case is new in 3.10")
13301325
class MatchCaseTest(CoverageTest):
13311326
"""Tests of match-case."""
1332-
@xfail_pypy_3936
13331327
def test_match_case_with_default(self) -> None:
13341328
self.check_coverage("""\
13351329
for command in ["huh", "go home", "go n"]:
@@ -1346,7 +1340,6 @@ def test_match_case_with_default(self) -> None:
13461340
)
13471341
assert self.stdout() == "default\nno go\ngo: n\n"
13481342

1349-
@xfail_pypy_3936
13501343
def test_match_case_with_wildcard(self) -> None:
13511344
self.check_coverage("""\
13521345
for command in ["huh", "go home", "go n"]:
@@ -1363,7 +1356,6 @@ def test_match_case_with_wildcard(self) -> None:
13631356
)
13641357
assert self.stdout() == "default: ['huh']\nno go\ngo: n\n"
13651358

1366-
@xfail_pypy_3936
13671359
def test_match_case_without_wildcard(self) -> None:
13681360
self.check_coverage("""\
13691361
match = None
@@ -1708,10 +1700,6 @@ def my_function(
17081700
)
17091701

17101702
@xfail_pypy38
1711-
@pytest.mark.xfail(
1712-
env.PYPY and env.PYVERSION[:2] >= (3, 10),
1713-
reason="https://foss.heptapod.net/pypy/pypy/-/issues/3937",
1714-
)
17151703
def test_class_decorator(self) -> None:
17161704
arcz = (
17171705
".1 16 67 6D 7A AE E. " # main line

0 commit comments

Comments
 (0)