Enable wheel processing in the tests

In advance of enabling wheel processing in pbr overall, enable it
in the integration testing.

Change-Id: Ide460e000c872902590726639d42a5ecac9e4673
This commit is contained in:
Monty Taylor 2013-11-17 07:24:41 -05:00
parent ff106c36a8
commit 29d3b6ba2d
1 changed files with 3 additions and 1 deletions

View File

@ -5,9 +5,11 @@ function mkvenv {
rm -rf $venv
virtualenv $venv
$venv/bin/pip install -U pip
$venv/bin/pip install -U pip wheel
}
export PIP_USE_WHEEL=true
# BASE should be a directory with a subdir called "new" and in that
# dir, there should be a git repository for every entry in PROJECTS
BASE=${BASE:-/opt/stack}