From 595e8af428d9149d36d6676d2200c645de98bbdd Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam Date: Thu, 25 Jun 2015 16:04:14 +0530 Subject: [PATCH] Enable convergence in zuul functional testing Adds a environment variable ENABLE_CONVERGENCE=true for enabling the functional testing with convergence engine. Change-Id: If4b2c9a1a3359749d3238c891ffdc1f57cf1b308 --- heat_integrationtests/pre_test_hook.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/heat_integrationtests/pre_test_hook.sh b/heat_integrationtests/pre_test_hook.sh index 09a2168eef..37550f29a2 100755 --- a/heat_integrationtests/pre_test_hook.sh +++ b/heat_integrationtests/pre_test_hook.sh @@ -24,3 +24,7 @@ echo -e 'notification_driver=messagingv2\n' >> $localconf echo -e 'num_engine_workers=2\n' >> $localconf echo -e 'plugin_dirs=$HEAT_DIR/heat_integrationtests/common/test_resources\n' >> $localconf echo -e 'hidden_stack_tags=hidden\n' >> $localconf + +if [ "$ENABLE_CONVERGENCE" == "true" ] ; then + echo -e 'convergence_engine=true\n' >> $localconf +fi \ No newline at end of file