From 9a352daf892a78bcef232e2da32b0d46c4c10fe7 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Wed, 28 Nov 2012 17:22:39 +0000 Subject: [PATCH] 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 --- lib/tempest | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/tempest b/lib/tempest index 115c91181f..871e9e7383 100644 --- a/lib/tempest +++ b/lib/tempest @@ -49,6 +49,10 @@ function configure_tempest() { # install_tempest() - Collect source and prepare function install_tempest() { git_clone $TEMPEST_REPO $TEMPEST_DIR $TEMPEST_BRANCH + + # Tempest doesn't satisfy its dependencies on its own, so + # install them here instead. + sudo pip install -r $TEMPEST_DIR/tools/pip-requires }