diff --git a/lib/oslo b/lib/oslo index b195687bb7..be26668dfb 100644 --- a/lib/oslo +++ b/lib/oslo @@ -25,6 +25,7 @@ set +o xtrace GITDIR["automaton"]=$DEST/automaton GITDIR["cliff"]=$DEST/cliff GITDIR["debtcollector"]=$DEST/debtcollector +GITDIR["futurist"]=$DEST/futurist GITDIR["oslo.concurrency"]=$DEST/oslo.concurrency GITDIR["oslo.config"]=$DEST/oslo.config GITDIR["oslo.context"]=$DEST/oslo.context @@ -63,6 +64,7 @@ function _do_install_oslo_lib { function install_oslo { _do_install_oslo_lib "cliff" _do_install_oslo_lib "debtcollector" + _do_install_oslo_lib "futurist" _do_install_oslo_lib "oslo.concurrency" _do_install_oslo_lib "oslo.config" _do_install_oslo_lib "oslo.context" diff --git a/stackrc b/stackrc index b010a88d52..c16a9997a4 100644 --- a/stackrc +++ b/stackrc @@ -326,6 +326,10 @@ GITDIR["python-openstackclient"]=$DEST/python-openstackclient GITREPO["cliff"]=${CLIFF_REPO:-${GIT_BASE}/openstack/cliff.git} GITBRANCH["cliff"]=${CLIFF_BRANCH:-master} +# async framework/helpers +GITREPO["futurist"]=${FUTURIST_REPO:-${GIT_BASE}/openstack/futurist.git} +GITBRANCH["futurist"]=${FUTURIST_BRANCH:-master} + # debtcollector deprecation framework/helpers GITREPO["debtcollector"]=${DEBTCOLLECTOR_REPO:-${GIT_BASE}/openstack/debtcollector.git} GITBRANCH["debtcollector"]=${DEBTCOLLECTOR_BRANCH:-master} diff --git a/tests/test_libs_from_pypi.sh b/tests/test_libs_from_pypi.sh index 83b7e10b81..2f0b1febe4 100755 --- a/tests/test_libs_from_pypi.sh +++ b/tests/test_libs_from_pypi.sh @@ -39,7 +39,7 @@ ALL_LIBS+=" oslo.serialization python-saharaclient django_openstack_auth" ALL_LIBS+=" python-openstackclient oslo.rootwrap oslo.i18n" ALL_LIBS+=" python-ceilometerclient oslo.utils python-swiftclient" ALL_LIBS+=" python-neutronclient tooz ceilometermiddleware oslo.policy" -ALL_LIBS+=" debtcollector os-brick automaton" +ALL_LIBS+=" debtcollector os-brick automaton futurist" # Generate the above list with # echo ${!GITREPO[@]}