Merge "ensure-tox: Avoid Reinstalling tox venv if present"
This commit is contained in:
commit
ec6b89b0d4
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
- name: Check if tox is installed
|
- name: Check if tox is installed
|
||||||
shell: |
|
shell: |
|
||||||
command -v {{ tox_executable }} || exit 1
|
command -v {{ tox_executable }} {{ tox_venv_path }}/bin/tox || exit 1
|
||||||
args:
|
args:
|
||||||
executable: /bin/bash
|
executable: /bin/bash
|
||||||
register: tox_preinstalled
|
register: tox_preinstalled
|
||||||
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
- name: Export preinstalled tox_exectuable
|
- name: Export preinstalled tox_exectuable
|
||||||
set_fact:
|
set_fact:
|
||||||
tox_executable: '{{ tox_preinstalled.stdout }}'
|
tox_executable: '{{ tox_preinstalled.stdout_lines[0] }}'
|
||||||
cacheable: true
|
cacheable: true
|
||||||
when: tox_preinstalled.rc == 0
|
when: tox_preinstalled.rc == 0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user