Chandan Kumar ae606fd3bb 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: I3ac8516a0c15b0816c14074ec5119e317735edd6
2018-01-10 07:33:47 +00:00

14 lines
327 B
Bash

# install_telemetry_tempest_plugin
function install_telemetry_tempest_plugin {
setup_dev_lib "telemetry-tempest-plugin"
}
if [[ "$1" == "stack" ]]; then
case "$2" in
install)
echo_summary "Installing telemetry-tempest-plugin"
install_telemetry_tempest_plugin
;;
esac
fi