Commit 7cf009a7 authored by Jason R. Coombs's avatar Jason R. Coombs

Expect test to fail on PyPy due to implicit import during startup.

parent 521987da
......@@ -9,6 +9,9 @@ import jaraco.envs
import path
IS_PYPY = '__pypy__' in sys.builtin_module_names
class VirtualEnv(jaraco.envs.VirtualEnv):
name = '.env'
......@@ -57,6 +60,7 @@ def test_distutils_local_with_setuptools(venv):
assert venv.name in loc.split(os.sep)
@pytest.mark.xfail('IS_PYPY', reason='pypy imports distutils on startup')
def test_distutils_local(venv):
"""
Even without importing, the setuptools-local copy of distutils is
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment