summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-01-22 07:42:30 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-01-22 07:42:30 -0500
commitd604c877e4652f43ff0b166fb3f3b625bedcb380 (patch)
tree2b86e8efda678522c6bf4d5a577fe60417e59c31
parentac0df39e92b34eb2fabffcac59a4b811b452e58b (diff)
downloadpython-coveragepy-git-d604c877e4652f43ff0b166fb3f3b625bedcb380.tar.gz
test: bpo46028 was fixed in 3.11 this week
-rw-r--r--tests/test_venv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_venv.py b/tests/test_venv.py
index 050d467c..c90ac76a 100644
--- a/tests/test_venv.py
+++ b/tests/test_venv.py
@@ -160,7 +160,7 @@ def coverage_command_fixture(request):
# https://bugs.python.org/issue46028
-@pytest.mark.xfail((3, 11, 0, 'alpha', 3) <= env.PYVERSION[:5], reason="avoid 3.11 bug: bpo46028")
+@pytest.mark.xfail((3, 11, 0, 'alpha', 4, 0) == env.PYVERSION, reason="avoid 3.11 bug: bpo46028")
class VirtualenvTest(CoverageTest):
"""Tests of virtualenv considerations."""