apparently the upstream naming is tempest-lib

tempest_lib was how this was generally referred to, however that meant
that the job naming wasn't specifying the correctly src
library. Change to tempest-lib to actually test these things before
release.

Change-Id: I4c0712156d7ff71ee43747f30ab940e249d12ebc
This commit is contained in:
Sean Dague 2014-11-18 07:13:35 -05:00
parent 5e3e8610aa
commit 91b229058c
2 changed files with 6 additions and 6 deletions

@ -45,7 +45,7 @@ set +o xtrace
# --------
# Set up default directories
GITDIR["tempest_lib"]=$DEST/tempest-lib
GITDIR["tempest-lib"]=$DEST/tempest-lib
TEMPEST_DIR=$DEST/tempest
TEMPEST_CONFIG_DIR=${TEMPEST_CONFIG_DIR:-$TEMPEST_DIR/etc}
@ -446,9 +446,9 @@ function create_tempest_accounts {
# install_tempest_lib() - Collect source, prepare, and install tempest-lib
function install_tempest_lib {
if use_library_from_git "tempest_lib"; then
git_clone_by_name "tempest_lib"
setup_develop "tempest_lib"
if use_library_from_git "tempest-lib"; then
git_clone_by_name "tempest-lib"
setup_develop "tempest-lib"
fi
}

@ -203,8 +203,8 @@ TEMPEST_REPO=${TEMPEST_REPO:-${GIT_BASE}/openstack/tempest.git}
TEMPEST_BRANCH=${TEMPEST_BRANCH:-master}
# TODO(sdague): this should end up as a library component like below
GITREPO["tempest_lib"]=${TEMPEST_LIB_REPO:-${GIT_BASE}/openstack/tempest-lib.git}
GITBRANCH["tempest_lib"]=${TEMPEST_LIB_BRANCH:-master}
GITREPO["tempest-lib"]=${TEMPEST_LIB_REPO:-${GIT_BASE}/openstack/tempest-lib.git}
GITBRANCH["tempest-lib"]=${TEMPEST_LIB_BRANCH:-master}
##############