git checkout ${PACKAGES})
}
+create_vim(){
+ echo -e "\nCreating VIM ${VIM_TARGET}"
+ osm vim-create --name ${VIM_TARGET} --user ${OS_USERNAME} --password ${OS_PASSWORD} --tenant ${OS_PROJECT_NAME} \
+ --auth_url ${OS_AUTH_URL} --account_type openstack --description vim \
+ --config "{management_network_name: ${VIM_MGMT_NET}}" || true
+}
+
PARAMS=""
while (( "$#" )); do
OSMCLIENT=$2 install_osmclient
shift 2
;;
+ -c|--createvim)
+ create_vim
+ shift 1
+ ;;
-h|--help)
echo "OSM TESTS TOOL
-o <osmclient_version> [OPTIONAL]: It is used to specify a particular osmclient version. Default: latest
-p <package_branch> [OPTIONAL]: OSM packages repository branch. Default: master
-t <testing_tags> [OPTIONAL]: Robot tests tags. [sanity, regression, particular_test]. Default: sanity
+ -c To create a VIM for the tests
Volumes:
<path_to_reports> [OPTIONAL]: It is the absolute path to reports location in the host