Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bac272d commit f7596ecCopy full SHA for f7596ec
git/test/lib/helper.py
@@ -16,7 +16,7 @@
16
import textwrap
17
import time
18
import unittest
19
-import venv
+import virtualenv
20
21
from git.compat import string_types, is_win
22
from git.util import rmtree, cwd
@@ -391,10 +391,10 @@ class VirtualEnvironment:
391
def __init__(self, env_dir, with_pip):
392
if os.name == "nt":
393
self._env_dir = osp.realpath(env_dir)
394
- venv.create(self.env_dir, symlinks=False, with_pip=with_pip)
+ # venv.create(self.env_dir, symlinks=False, with_pip=with_pip)
395
else:
396
self._env_dir = env_dir
397
- venv.create(self.env_dir, symlinks=True, with_pip=with_pip)
+ # venv.create(self.env_dir, symlinks=True, with_pip=with_pip)
398
399
@property
400
def env_dir(self):
0 commit comments