Rename python-openstacksdk to openstacksdk in zuul.yaml

This patch will need to be force-merged after the rename.

Change-Id: I07df6626ca988c28ef36ef42dba3544994a5f809
This commit is contained in:
Monty Taylor 2018-03-23 07:57:25 -05:00
parent e088d95852
commit 1796d25a51
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
2 changed files with 9 additions and 9 deletions

View File

@ -10,8 +10,8 @@
required-projects:
- openstack-infra/shade
- openstack/keystoneauth
- openstack/openstacksdk
- openstack/os-client-config
- openstack/python-openstacksdk
- job:
name: openstacksdk-tox-py35-tips
@ -25,8 +25,8 @@
required-projects:
- openstack-infra/shade
- openstack/keystoneauth
- openstack/openstacksdk
- openstack/os-client-config
- openstack/python-openstacksdk
- project-template:
name: openstacksdk-tox-tips
@ -52,7 +52,7 @@
# things.
- name: openstack-infra/shade
override-branch: master
- name: openstack/python-openstacksdk
- name: openstack/openstacksdk
override-branch: master
- name: openstack/os-client-config
override-branch: master
@ -84,7 +84,7 @@
OPENSTACKSDK_HAS_SWIFT: 1
tox_install_siblings: false
tox_envlist: functional
zuul_work_dir: src/git.openstack.org/openstack/python-openstacksdk
zuul_work_dir: src/git.openstack.org/openstack/openstacksdk
- job:
name: openstacksdk-functional-devstack-legacy
@ -155,8 +155,8 @@
required-projects:
- openstack-infra/shade
- openstack/keystoneauth
- openstack/openstacksdk
- openstack/os-client-config
- openstack/python-openstacksdk
vars:
tox_install_siblings: true

View File

@ -3,18 +3,18 @@
# To enable openstacksdk in devstack add an entry to local.conf that looks like
#
# [[local|localrc]]
# enable_plugin openstacksdk git://git.openstack.org/openstack/python-openstacksdk
# enable_plugin openstacksdk https://git.openstack.org/openstack/openstacksdk
function preinstall_openstacksdk {
:
}
function install_openstacksdk {
if use_library_from_git "python-openstacksdk"; then
if use_library_from_git "openstacksdk"; then
# don't clone, it'll be done by the plugin install
setup_dev_lib "python-openstacksdk"
setup_dev_lib "openstacksdk"
else
pip_install "python-openstacksdk"
pip_install "openstacksdk"
fi
}