Switch to tempest_pip_install_args

We have tempest_pip_install_args to pass additional
args to python_venv_build role for tempest. Let's use it
instead of pip_install_options.

Change-Id: Ie0299fdd9147aaf8162c3d094d7d619e75652528
Signed-off-by: Chandan Kumar (raukadah) <chkumar@redhat.com>
This commit is contained in:
Chandan Kumar (raukadah) 2019-06-10 16:11:33 +05:30
parent 035c0d473e
commit 6d47796bfe
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@
virtualenv: "{{ tempest_venv_bin | dirname }}"
virtualenv_site_packages: "no"
extra_args: >-
{{ pip_install_options | default('') }}
{{ tempest_pip_install_args }}
--isolated
with_items: "{{ tempest_plugins }}"
when: item.repo is defined
@ -62,7 +62,7 @@
virtualenv: "{{ tempest_venv_bin | dirname }}"
virtualenv_site_packages: "no"
extra_args: >-
{{ pip_install_options | default('') }}
{{ tempest_pip_install_args }}
--isolated
with_items: "{{ tempest_plugins }}"
when: item.package is defined