summaryrefslogtreecommitdiff
path: root/lab/extract_code.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-05-13 07:27:36 -0400
committerNed Batchelder <ned@nedbatchelder.com>2022-05-13 07:27:36 -0400
commitb3aa805c064f6c07d0780c815d92960484999afc (patch)
tree38f0af9f5aaa299927451a62cbca01142c4d656e /lab/extract_code.py
parent6697d044128d58c462b20867f4008225ff7ed9fc (diff)
downloadpython-coveragepy-git-b3aa805c064f6c07d0780c815d92960484999afc.tar.gz
test: remove version-specfic skips we no longer need
Diffstat (limited to 'lab/extract_code.py')
-rw-r--r--lab/extract_code.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lab/extract_code.py b/lab/extract_code.py
index c5a9df81..e9fc086f 100644
--- a/lab/extract_code.py
+++ b/lab/extract_code.py
@@ -11,10 +11,6 @@ contents of the string.
If tests/test_arcs.py has this (partial) content::
- 1626 @pytest.mark.skipif(
- 1627 (3, 11, 0, "alpha", 4) <= env.PYVERSION,
- 1628 reason="avoid a 3.11 bug: https://bugs.python.org/issue46389",
- 1629 )
1630 def test_partial_generators(self):
1631 # https://github.com/nedbat/coveragepy/issues/475
1632 # Line 2 is executed completely.