diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-27 06:57:18 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-27 07:20:49 -0500 |
commit | 5af6270dd72f2a217823a32bf7141d3f7c1a2a92 (patch) | |
tree | edf3c7dc2a3f71ca31a8269b387e7f08ebdf49b9 /tests/test_coverage.py | |
parent | 769ea88198e15d4c549ed57b41abc6b996be68c1 (diff) | |
download | python-coveragepy-git-5af6270dd72f2a217823a32bf7141d3f7c1a2a92.tar.gz |
fix: adjust some PyPy behaviors. #1515
Diffstat (limited to 'tests/test_coverage.py')
-rw-r--r-- | tests/test_coverage.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_coverage.py b/tests/test_coverage.py index b9e5d6ae..17da4f5e 100644 --- a/tests/test_coverage.py +++ b/tests/test_coverage.py @@ -10,7 +10,6 @@ from coverage import env from coverage.exceptions import NoDataError from tests.coveragetest import CoverageTest -from tests.helpers import xfail_pypy_3749 class TestCoverageTest(CoverageTest): @@ -1618,7 +1617,6 @@ class ExcludeTest(CoverageTest): class Py24Test(CoverageTest): """Tests of new syntax in Python 2.4.""" - @xfail_pypy_3749 def test_function_decorators(self): lines = [1, 2, 3, 4, 6, 8, 10, 12] if env.PYBEHAVIOR.trace_decorated_def: @@ -1639,7 +1637,6 @@ class Py24Test(CoverageTest): """, lines, "") - @xfail_pypy_3749 def test_function_decorators_with_args(self): lines = [1, 2, 3, 4, 5, 6, 8, 10, 12] if env.PYBEHAVIOR.trace_decorated_def: @@ -1660,7 +1657,6 @@ class Py24Test(CoverageTest): """, lines, "") - @xfail_pypy_3749 def test_double_function_decorators(self): lines = [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 14, 15, 17, 19, 21, 22, 24, 26] if env.PYBEHAVIOR.trace_decorated_def: |