summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrew Smith <ansmith@redhat.com>2017-11-28 11:10:20 -0500
committerAndrew Smith <ansmith@redhat.com>2017-11-29 11:10:35 -0500
commit0ca9567c4a6ab793dc50e5d45514fe12d2282419 (patch)
treeffbf5702bee0574068a3ee75cec283d55637460a /tools
parent7c65038e79850b878187feb366ad2db0bc960572 (diff)
downloadoslo-messaging-0ca9567c4a6ab793dc50e5d45514fe12d2282419.tar.gz
Provide bindep_profile in openstack-tox job setup
Oslo.messaging uses a single bindep.txt to define common and driver dependencies. The bindep_profile is used by the bindep role to select the driver specific packages. This patch: * Add bindep_profile var to jobs * Add kafka dependencies * update test-setup for use by amqp1 Depends-On: I6beb7b07a7dbc345e63e758ebbc86400e0ee16d3 Change-Id: Ib552152e841a9fc0bffdcb7c3f7bc75613d0ed62
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test-setup.sh16
1 files changed, 7 insertions, 9 deletions
diff --git a/tools/test-setup.sh b/tools/test-setup.sh
index b2fffb5..0d49f7f 100755
--- a/tools/test-setup.sh
+++ b/tools/test-setup.sh
@@ -4,7 +4,7 @@
# it sets up the test system as needed.
# Developer should setup their test systems in a similar way.
-# This setup needs to be run by a user that can run sudo.
+# This setup for amqp1 needs to be run by a user that can run sudo.
function is_fedora {
[ -f /usr/bin/yum ] && cat /etc/*release | grep -q -e "Fedora"
@@ -14,14 +14,12 @@ function is_fedora {
# because tox doesn't have a quiet option...
tox -ebindep --notest
-# TODO(kgiusti) for now install all profile deps, need to fix this to
-# install only the deps needed by the particular test's profile
-PROFILES="rabbit zmq amqp1"
-PACKAGES=
-for PROFILE in $PROFILES; do
- # NOTE(sileht): bindep return 1 if some packages have to be installed
- PACKAGES="$PACKAGES $(.tox/bindep/bin/bindep -b -f bindep.txt $PROFILE || true)"
-done
+# TODO(ansmith) for now setup amqp1 dependencies for any profile.
+# Fix this when test-setup is passed environment profile setting.
+
+# NOTE(sileht): bindep return 1 if some packages have to be installed
+PACKAGES="$(.tox/bindep/bin/bindep -b -f bindep.txt amqp1 || true)"
+
[ -n "$PACKAGES" ] || exit 0
# inspired from project-config install-distro-packages.sh