Browse code

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

Matthew Treinish authored on 2015/03/16 23:37:51
Showing 1 changed files
... ...
@@ -66,7 +66,7 @@ BUILD_TIMEOUT=${BUILD_TIMEOUT:-196}
66 66
 # This must be False on stable branches, as master tempest
67 67
 # deps do not match stable branch deps. Set this to True to
68 68
 # have tempest installed in devstack by default.
69
-INSTALL_TEMPEST=${INSTALL_TEMPEST:-"False"}
69
+INSTALL_TEMPEST=${INSTALL_TEMPEST:-"True"}
70 70
 
71 71
 
72 72
 BOTO_MATERIALS_PATH="$FILES/images/s3-materials/cirros-${CIRROS_VERSION}"