summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-11-17 07:24:41 -0500
committerMonty Taylor <mordred@inaugust.com>2013-11-29 00:31:26 -0500
commit29d3b6ba2dd92e060e35d5f28d3bc55b2376cc2f (patch)
tree4a5008a62c331d07bcd41581d9703ca3fe19ed5f
parentff106c36a8370ff3757a57e800ba653a628be13f (diff)
downloadpbr-29d3b6ba2dd92e060e35d5f28d3bc55b2376cc2f.tar.gz
Enable wheel processing in the tests
In advance of enabling wheel processing in pbr overall, enable it in the integration testing. Change-Id: Ide460e000c872902590726639d42a5ecac9e4673
-rw-r--r--tools/integration.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/integration.sh b/tools/integration.sh
index 9382b64..53c0602 100644
--- a/tools/integration.sh
+++ b/tools/integration.sh
@@ -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}