mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
no longer need to add special scripttest path
This commit is contained in:
parent
3a2d82bbba
commit
8c7ca9082c
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,8 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
import os, sys, tempfile, shutil, glob, atexit, textwrap
|
import os, sys, tempfile, shutil, glob, atexit, textwrap
|
||||||
|
|
||||||
from path import *
|
from path import *
|
||||||
|
from scripttest import TestFileEnvironment
|
||||||
|
|
||||||
pyversion = sys.version[:3]
|
pyversion = sys.version[:3]
|
||||||
|
|
||||||
|
@ -18,10 +20,8 @@ def demand_dirs(path):
|
||||||
demand_dirs(download_cache)
|
demand_dirs(download_cache)
|
||||||
|
|
||||||
# Tweak the path so we can find up-to-date pip sources
|
# Tweak the path so we can find up-to-date pip sources
|
||||||
# (http://bitbucket.org/ianb/pip/issue/98) and scripttest (because my
|
# (http://bitbucket.org/ianb/pip/issue/98)
|
||||||
# split_cmd patch hasn't been accepted/released yet).
|
sys.path = [src] + sys.path
|
||||||
sys.path = [src, os.path.join(src, 'scripttest')] + sys.path
|
|
||||||
from scripttest import TestFileEnvironment
|
|
||||||
|
|
||||||
def create_virtualenv(where, distribute=False):
|
def create_virtualenv(where, distribute=False):
|
||||||
save_argv = sys.argv
|
save_argv = sys.argv
|
||||||
|
|
Loading…
Reference in a new issue