diff options
-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.""" |