Skip to content

Commit

Permalink
Merge "Use --no-cache-dir options for pip install" into R2.22.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Mar 21, 2016
2 parents 4789b4b + 4978706 commit 2fe5825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/common/tests/tools/install_venv_common.py
Expand Up @@ -108,7 +108,7 @@ def create_virtualenv(self, no_site_packages=True):
def pip_install(self, find_links, *args):
find_links_str = ' '.join('--find-links file://'+x for x in find_links)
cmd_array = ['%stools/with_venv.sh' %(os.environ.get('tools_path', '')),
'python', '.venv/bin/pip', 'install',
'python', '.venv/bin/pip', 'install', '--no-cache-dir',
'--upgrade']
for link in find_links:
cmd_array.extend(['--find-links', 'file://'+link])
Expand Down

0 comments on commit 2fe5825

Please sign in to comment.