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

This commit is contained in:
Jenkins 2012-11-29 00:29:14 +00:00 committed by Gerrit Code Review
commit a823ab4647

View File

@ -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
}