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
1 changed files with 10 additions and 2 deletions

View File

@ -76,9 +76,17 @@
vars:
python_version: 3.9
- name: Install tox
- name: Install tox with venv command override
include_role:
name: ensure-tox
vars:
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