From da0e10657be6cce04082485c09132640211bcf89 Mon Sep 17 00:00:00 2001 From: ozamiatin Date: Tue, 22 Nov 2016 17:29:35 +0200 Subject: [PATCH] [zmq] Fix configuration for functional gate job Currently zmq functional gate jobs run the same configuration zeromq for all three configurations zeromq/zeromq-proxy/zeromq-pub-sub while locally if we run tox -e py27-func-zeromq-proxy (or pub-sub or zeromq) the proper one will run. Gate job has to work similarly to what we have in local testing. Change-Id: I94342be65564665faf27d8d01ae6650183146874 Closes-Bug: #1643929 --- oslo_messaging/tests/functional/gate/post_test_hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo_messaging/tests/functional/gate/post_test_hook.sh b/oslo_messaging/tests/functional/gate/post_test_hook.sh index 66cfaf29c..155a8c4b3 100755 --- a/oslo_messaging/tests/functional/gate/post_test_hook.sh +++ b/oslo_messaging/tests/functional/gate/post_test_hook.sh @@ -43,7 +43,7 @@ fi # Install required packages case $RPC_BACKEND in - zeromq) + zeromq|zeromq-proxy|zeromq-pub-sub) sudo apt-get update -y sudo apt-get install -y redis-server python-redis ;;