Browse code

Install Tempest's dependencies along with it.

* lib/tempest(install_tempest): Directly install Tempest's
tools/pip-requires list after cloning the repo.

Change-Id: I5c508faab8756d5cdfec53193e08e3440fda1b2c

Jeremy Stanley authored on 2012/11/29 02:22:39
Showing 1 changed files
... ...
@@ -49,6 +49,10 @@ function configure_tempest() {
49 49
 # install_tempest() - Collect source and prepare
50 50
 function install_tempest() {
51 51
     git_clone $TEMPEST_REPO $TEMPEST_DIR $TEMPEST_BRANCH
52
+
53
+    # Tempest doesn't satisfy its dependencies on its own, so
54
+    # install them here instead.
55
+    sudo pip install -r $TEMPEST_DIR/tools/pip-requires
52 56
 }
53 57
 
54 58