Add more oslo libs to the run-tox-with-oslo-master script

Add a few more of the (somewhat) widely used oslo libraries
to the run-tox-with-oslo-master script that is used for various
master checking against various projects (so that the oslo team
knows that new libs won't be messing up various projects in
unexpected ways).

Change-Id: Ia65cb360290c7d8da394ea5d51ee2d8091018d6b
This commit is contained in:
Joshua Harlow 2016-06-09 16:26:21 -07:00
parent 81be27cabe
commit 31dc30a80e

View File

@ -23,6 +23,12 @@ fi
script_path=/usr/local/jenkins/slave_scripts
cat << EOF > oslo-from-master.sh
pip install -q -U \
-e git+https://git.openstack.org/openstack/automaton.git#egg=automaton
pip install -q -U \
-e git+https://git.openstack.org/openstack/debtcollector.git#egg=debtcollector
pip install -q -U \
-e git+https://git.openstack.org/openstack/futurist.git#egg=futurist
pip install -q -U \
-e git+https://git.openstack.org/openstack/oslo.cache.git#egg=oslo.cache
pip install -q -U \
@ -63,6 +69,10 @@ pip install -q -U \
-e git+https://git.openstack.org/openstack/oslotest.git#egg=oslotest
pip install -q -U \
-e git+https://git.openstack.org/openstack/oslo.db.git#egg=oslo.db
pip install -q -U \
-e git+https://git.openstack.org/openstack/taskflow.git#egg=taskflow
pip install -q -U \
-e git+https://git.openstack.org/openstack/tooz.git#egg=tooz
pip freeze | grep oslo
EOF