neutron-tempest-plugin/devstack/plugin.sh
Jens Harbott 228d5b8fb9 Add devstack plugin to ease integration tests
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
2017-12-06 15:08:50 +00:00

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