this will let us run tempest test in CI Change-Id: Id7d996e736c14cebdd430248aa72b8b5e50f0720
14 lines
317 B
Bash
14 lines
317 B
Bash
# install_freezer_tempest_plugin
|
|
function install_freezer_tempest_plugin {
|
|
setup_dev_lib "freezer-tempest-plugin"
|
|
}
|
|
|
|
if [[ "$1" == "stack" ]]; then
|
|
case "$2" in
|
|
install)
|
|
echo_summary "Installing freezer-tempest-plugin"
|
|
install_freezer_tempest_plugin
|
|
;;
|
|
esac
|
|
fi
|