Fix configure script for functional tests

The script was pinning oslo.config to 3.0.0, which does not work
now (deprecation error). Changed to not pin to a version and
elaborated on note as to why this needs to be there.

Change-Id: I970903983229e37dfc93dba396914a01fa5bc057
This commit is contained in:
Paul Michali 2016-02-18 10:32:05 -05:00
parent 08416519b4
commit 92cf8da4a4
1 changed files with 3 additions and 1 deletions

View File

@ -56,7 +56,9 @@ function configure_host_for_vpn_func_testing {
if [ "$IS_GATE" == "True" ]; then
configure_host_for_func_testing
fi
sudo pip install --force oslo.config==3.0.0 # req for oslo-config-generator
# Note(pc_m): Need to ensure this is installed so we have
# oslo-config-generator present (as this script runs before tox.ini).
sudo pip install --force oslo.config
_install_vpn_package
_configure_vpn_ini_file
}