From cb3ceceda227036c357a1c3173ecbd8c3116b148 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Mon, 16 Mar 2015 10:37:51 -0400 Subject: [PATCH] Set INSTALL_TEMPEST to default true This commit switches the default value for INSTALL_TEMPEST on master devstack to be true. Not installing tempest by default on devstack is confusing for devs and people working with tempest in devstack. The venv isolation is only really required on stable branches because of conflicting requirements, however it is not really necessary on master. Change-Id: I368cb56fd9e0cbf59cefe24a46507d3f58b9a8e3 --- lib/tempest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tempest b/lib/tempest index f856ce05f9..85bccb62a0 100644 --- a/lib/tempest +++ b/lib/tempest @@ -66,7 +66,7 @@ BUILD_TIMEOUT=${BUILD_TIMEOUT:-196} # This must be False on stable branches, as master tempest # deps do not match stable branch deps. Set this to True to # have tempest installed in devstack by default. -INSTALL_TEMPEST=${INSTALL_TEMPEST:-"False"} +INSTALL_TEMPEST=${INSTALL_TEMPEST:-"True"} BOTO_MATERIALS_PATH="$FILES/images/s3-materials/cirros-${CIRROS_VERSION}"