diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2022-01-02 07:03:54 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-01-02 07:03:54 -0500 |
| commit | a260995d527df1307e7ec82d3aa2b01930dbab5b (patch) | |
| tree | 7106eb722b045c637aa170b325ddcf8a4e793093 | |
| parent | a11bcb70c2faa6e24738c668030a97d8ce9b3ffc (diff) | |
| download | python-coveragepy-git-a260995d527df1307e7ec82d3aa2b01930dbab5b.tar.gz | |
test(build): skip virtualenv tests on 3.11.0a3 (bpo 46028)
I'm hoping this will be fixed in 3.11.0a4 by
https://github.com/python/cpython/pull/30144
| -rw-r--r-- | tests/test_venv.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_venv.py b/tests/test_venv.py index 1ea8acac..f5e2b34f 100644 --- a/tests/test_venv.py +++ b/tests/test_venv.py @@ -159,6 +159,8 @@ def coverage_command_fixture(request): return request.param +# https://bugs.python.org/issue46028 +@pytest.mark.skipif(env.PYVERSION[:5] == (3, 11, 0, 'alpha', 3), reason="avoid 3.11 bug: bpo46028") class VirtualenvTest(CoverageTest): """Tests of virtualenv considerations.""" |
