-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5843 from benoit-pierre/fix_tox.ini_install_command
tox: fix environment setup
- Loading branch information
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import os | ||
import shutil | ||
import subprocess | ||
import sys | ||
from glob import glob | ||
|
||
VIRTUAL_ENV = os.environ['VIRTUAL_ENV'] | ||
TOX_PIP_DIR = os.path.join(VIRTUAL_ENV, 'pip') | ||
|
||
|
||
def pip(args): | ||
# First things first, get a recent (stable) version of pip. | ||
if not os.path.exists(TOX_PIP_DIR): | ||
subprocess.check_call([sys.executable, '-m', 'pip', | ||
'--disable-pip-version-check', | ||
'install', '-t', TOX_PIP_DIR, | ||
'pip']) | ||
shutil.rmtree(glob(os.path.join(TOX_PIP_DIR, 'pip-*.dist-info'))[0]) | ||
# And use that version. | ||
pypath = os.environ.get('PYTHONPATH') | ||
pypath = pypath.split(os.pathsep) if pypath is not None else [] | ||
pypath.insert(0, TOX_PIP_DIR) | ||
os.environ['PYTHONPATH'] = os.pathsep.join(pypath) | ||
subprocess.check_call([sys.executable, '-m', 'pip'] + args) | ||
|
||
|
||
if __name__ == '__main__': | ||
pip(sys.argv[1:]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters