diff --git a/src/pytest_venv/__init__.py b/src/pytest_venv/__init__.py index f1d5121..528b4e4 100644 --- a/src/pytest_venv/__init__.py +++ b/src/pytest_venv/__init__.py @@ -26,6 +26,7 @@ def __init__(self, path): def create(self, system_packages=False, python=None): cmd = [sys.executable, '-m', 'virtualenv'] cmd += ['-p', python or sys.executable] + cmd += ['--setuptools=bundle'] if system_packages: cmd += ['--system-site-packages'] cmd += [self.path]