Skip to content

Commit b2e9734

Browse files
committed
refactor: remove unneeded skip decorators
1 parent e3c820a commit b2e9734

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ upgrading your version of coverage.py.
2323
Unreleased
2424
----------
2525

26+
- Dropped support for Python 3.8 and PyPy 3.8.
27+
2628
- Fix: a final wildcard match/case clause assigning to a name (``case _ as
2729
value``) was incorrectly marked as a missing branch. This is now fixed,
2830
closing `issue 1860`_.

tests/test_lcov.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import coverage
1212

1313
from tests.coveragetest import CoverageTest
14-
from tests.helpers import xfail_all_pypy38
1514

1615

1716
class LcovTest(CoverageTest):
@@ -160,7 +159,6 @@ def test_simple_line_coverage_two_files(self) -> None:
160159
actual_result = self.get_lcov_report_content(filename="data.lcov")
161160
assert expected_result == actual_result
162161

163-
@xfail_all_pypy38
164162
def test_branch_coverage_one_file(self) -> None:
165163
# Test that the reporter produces valid branch coverage.
166164
self.make_file("main_file.py", """\
@@ -197,7 +195,6 @@ def is_it_x(x):
197195
actual_result = self.get_lcov_report_content()
198196
assert expected_result == actual_result
199197

200-
@xfail_all_pypy38
201198
def test_branch_coverage_two_files(self) -> None:
202199
# Test that valid branch coverage is generated
203200
# in the case of two files.
@@ -361,7 +358,6 @@ def test_excluded_lines(self) -> None:
361358
actual_result = self.get_lcov_report_content()
362359
assert expected_result == actual_result
363360

364-
@xfail_all_pypy38
365361
def test_exit_branches(self) -> None:
366362
self.make_file("runme.py", """\
367363
def foo(a):
@@ -399,7 +395,6 @@ def foo(a):
399395
actual_result = self.get_lcov_report_content()
400396
assert expected_result == actual_result
401397

402-
@xfail_all_pypy38
403398
def test_genexpr_exit_arcs_pruned_full_coverage(self) -> None:
404399
self.make_file("runme.py", """\
405400
def foo(a):
@@ -437,7 +432,6 @@ def foo(a):
437432
actual_result = self.get_lcov_report_content()
438433
assert expected_result == actual_result
439434

440-
@xfail_all_pypy38
441435
def test_genexpr_exit_arcs_pruned_never_true(self) -> None:
442436
self.make_file("runme.py", """\
443437
def foo(a):
@@ -471,7 +465,6 @@ def foo(a):
471465
actual_result = self.get_lcov_report_content()
472466
assert expected_result == actual_result
473467

474-
@xfail_all_pypy38
475468
def test_genexpr_exit_arcs_pruned_always_true(self) -> None:
476469
self.make_file("runme.py", """\
477470
def foo(a):
@@ -505,7 +498,6 @@ def foo(a):
505498
actual_result = self.get_lcov_report_content()
506499
assert expected_result == actual_result
507500

508-
@xfail_all_pypy38
509501
def test_genexpr_exit_arcs_pruned_not_reached(self) -> None:
510502
self.make_file("runme.py", """\
511503
def foo(a):

0 commit comments

Comments
 (0)