Support editable flag to pip installation

This is useful for deploying experimental CI system for testing.

Change-Id: Ib66ae60936c5659a43857d3e0d0b1a08a089e288
This commit is contained in:
liusheng 2018-07-03 09:30:22 +08:00
parent a5d0f0b7f3
commit 621bbb0150
2 changed files with 2 additions and 0 deletions

View File

@ -103,6 +103,7 @@ zuul_install_method: pip
zuul_pip_name: zuul
# zuul_pip_executable:
# zuul_pip_editable:
# zuul_pip_extra_args:
# zuul_pip_version:
# zuul_pip_virtualenv_python

View File

@ -16,6 +16,7 @@
become: yes
pip:
executable: "{{ zuul_pip_executable|default(omit) }}"
editable : "{{ zuul_pip_editable|default(omit) }}"
extra_args: "{{ zuul_pip_extra_args|default(omit) }}"
name: "{{ zuul_pip_name }}"
version: "{{ zuul_pip_version|default(omit) }}"