diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-23 21:56:16 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-24 06:49:37 -0500 |
commit | 8854164c225e867bbdd794e2d39cbec104a67549 (patch) | |
tree | d0df011933295da633978b1ffeb81f735d2f59c9 /tests/test_venv.py | |
parent | efbda9ece633d8a97f950bb09d3324b4f458ffec (diff) | |
download | python-coveragepy-git-8854164c225e867bbdd794e2d39cbec104a67549.tar.gz |
test: remove obsolete skips
Diffstat (limited to 'tests/test_venv.py')
-rw-r--r-- | tests/test_venv.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_venv.py b/tests/test_venv.py index 9e91157c..e072dbd3 100644 --- a/tests/test_venv.py +++ b/tests/test_venv.py @@ -6,7 +6,6 @@ import os import os.path import shutil -import sys import pytest @@ -159,12 +158,6 @@ def coverage_command_fixture(request): return request.param -# https://bugs.python.org/issue46028 -@pytest.mark.xfail( - (3, 11, 0, 'alpha', 4, 0) == env.PYVERSION and - not os.path.exists(sys._base_executable), - reason="avoid 3.11 bug: bpo46028" -) class VirtualenvTest(CoverageTest): """Tests of virtualenv considerations.""" |