From c4526c0a615c03f6219ece34ce73b9d3606e44ac Mon Sep 17 00:00:00 2001 From: Jimmy McCrory Date: Fri, 7 Apr 2017 23:41:59 -0700 Subject: [PATCH] Apply upper-constraints when building venvs When building a venv for leap upgrades, checkout the applicable requirements repo SHA and apply its upper-constraints file. If packages within the venv are installed unconstrained, a project's database migration scripts may fail. Also remove tempest from being built within the venv. Change-Id: Ic7e9aaa2d445bfe22c0f707a00a867cc8e84a38d --- leap-upgrades/lib/functions.sh | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/leap-upgrades/lib/functions.sh b/leap-upgrades/lib/functions.sh index d5b875d0..67336fcd 100644 --- a/leap-upgrades/lib/functions.sh +++ b/leap-upgrades/lib/functions.sh @@ -281,9 +281,23 @@ function build_venv { import json packages = json.loads("""$PKG_DUMP""") remote_packages = packages[0]['remote_packages'] -print(' '.join([i for i in remote_packages if 'openstack' in i])) +print(' '.join([i for i in remote_packages if 'openstack' in i and 'tempest' not in i])) EOC) - pip install --isolated $PACKAGES + REQUIREMENTS=($(python <