Enable convergence in zuul functional testing

Adds a environment variable ENABLE_CONVERGENCE=true for
enabling the functional testing with convergence engine.

Change-Id: If4b2c9a1a3359749d3238c891ffdc1f57cf1b308
This commit is contained in:
Kanagaraj Manickam 2015-06-25 16:04:14 +05:30 committed by Sirushti Murugesan
parent ff30fed06b
commit 595e8af428
1 changed files with 4 additions and 0 deletions

View File

@ -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