Browse code

Merge "Install Tempest's dependencies along with it."

Jenkins authored on 2012/11/29 09:29:14
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