diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-01-15 05:32:01 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-01-15 07:58:57 -0500 |
commit | 73d4c5695eee4ee5f57c4cc1ad4b23d90adc6a6f (patch) | |
tree | 48e661d41f1ac13cc04da14a3a36d9f9a2d2d03e | |
parent | 685e3d3f82d0b5e5b5024eb99b0ef1b2ef506c50 (diff) | |
download | python-coveragepy-git-73d4c5695eee4ee5f57c4cc1ad4b23d90adc6a6f.tar.gz |
test: virtualenv tests are still broken on 3.11.0a4 (bpo 46028)
-rw-r--r-- | tests/test_venv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_venv.py b/tests/test_venv.py index 17cfb6e2..e4457315 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.skipif(env.PYVERSION[:5] == (3, 11, 0, 'alpha', 3), reason="avoid 3.11 bug: bpo46028") +@pytest.mark.skipif((3, 11, 0, 'alpha', 3) <= env.PYVERSION[:5], reason="avoid 3.11 bug: bpo46028") class VirtualenvTest(CoverageTest): """Tests of virtualenv considerations.""" |