Merge "Set ensure_pip_virtualenv_command in Focal proposal jobs"

This commit is contained in:
Zuul 2022-07-27 21:01:36 +00:00 committed by Gerrit Code Review
commit 6b1260262a

View File

@ -76,9 +76,17 @@
vars: vars:
python_version: 3.9 python_version: 3.9
- name: Install tox - name: Install tox with venv command override
include_role: include_role:
name: ensure-tox name: ensure-tox
vars: vars:
ensure_global_symlinks: true ensure_global_symlinks: true
ensure_pip_virtualenv_command: '{{ _venv_command | default(omit) }}' ensure_pip_virtualenv_command: '{{ _venv_command }}'
when: _venv_command is defined
- name: Install tox without venv command override
include_role:
name: ensure-tox
vars:
ensure_global_symlinks: true
when: _venv_command is not defined