Skip to content

Commit

Permalink
test(build): skip virtualenv tests on 3.11.0a3 (bpo 46028)
Browse files Browse the repository at this point in the history
I'm hoping this will be fixed in 3.11.0a4 by
python/cpython#30144
  • Loading branch information
nedbat committed Jan 2, 2022
1 parent a11bcb7 commit a260995
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_venv.py
Expand Up @@ -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."""

Expand Down

0 comments on commit a260995

Please sign in to comment.