228d5b8fb9
Instead of requiring users to install the plugin manually, add a devstack plugin that can be enabled in order to perform the installation. Change the integration tests to use the globally installed plugin instead of using TEMPEST_PLUGINS. Change-Id: I7282fa60db15427c73dfef84a40093904e083db2
14 lines
317 B
Bash
14 lines
317 B
Bash
# install_neutron_tempest_plugin
|
|
function install_neutron_tempest_plugin {
|
|
setup_dev_lib "neutron-tempest-plugin"
|
|
}
|
|
|
|
if [[ "$1" == "stack" ]]; then
|
|
case "$2" in
|
|
install)
|
|
echo_summary "Installing neutron-tempest-plugin"
|
|
install_neutron_tempest_plugin
|
|
;;
|
|
esac
|
|
fi
|