d8dd053b0a
As part of the work to allow VPN functionals job to run when Neutron commits are reviewed, we need to be more intelligent about how dependencies are resolved in the tox.ini for this repo. This commit does the same as LBaaS, using a script to determine whether an existing Neutron repo exists (and use that for a Neutron patch-set running the VPN tests) or whether the Neutron repo needs to be cloned (for a VPN patch set). With the VPN repo, the rootwrap config file and filters need to be set up. The deploy_rootwrap script is modified to do all actions related to setup, instead of doing part of that in tox.ini, as before. In addition, rootwrap config and needed filters for testing from Neutron are added to this repo, so there is no dependency on Neutron (whose location cannot be assumed in the gate). NOTE: To run functional tests locally, one needs to set VENV for the desired functional target and invoke configure_vpn_for_func_testing.sh. Next, run tox for the functional target with --notest to setup the virtual environment. Then, install Neutron into the virtual env. Finally, the functional test can then be invoked. This must be upstreamed, before allowing the VPN functional job to run for Neutron jobs. Change-Id: Idb3c4dff0dbb40e30b2b49591df0b014b769f167
42 lines
1.2 KiB
Bash
Executable File
42 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Many of neutron's repos suffer from the problem of depending on neutron,
|
|
# but it not existing on pypi.
|
|
|
|
# This wrapper for tox's package installer will use the existing package
|
|
# if it exists, else use zuul-cloner if that program exists, else grab it
|
|
# from neutron master via a hard-coded URL. That last case should only
|
|
# happen with devs running unit tests locally.
|
|
|
|
# From the tox.ini config page:
|
|
# install_command=ARGV
|
|
# default:
|
|
# pip install {opts} {packages}
|
|
|
|
ZUUL_CLONER=/usr/zuul-env/bin/zuul-cloner
|
|
neutron_installed=$(python -c "import neutron" ; echo $?)
|
|
|
|
set -e
|
|
|
|
if [ $neutron_installed -eq 0 ]; then
|
|
echo "ALREADY INSTALLED" > /tmp/tox_install.txt
|
|
echo "Neutron already installed; using existing package"
|
|
elif [ -x "$ZUUL_CLONER" ]; then
|
|
echo "ZUUL CLONER" > /tmp/tox_install.txt
|
|
cwd=$(/bin/pwd)
|
|
cd /tmp
|
|
$ZUUL_CLONER --cache-dir \
|
|
/opt/git \
|
|
git://git.openstack.org \
|
|
openstack/neutron
|
|
cd openstack/neutron
|
|
pip install -e .
|
|
cd "$cwd"
|
|
else
|
|
echo "PIP HARDCODE" > /tmp/tox_install.txt
|
|
pip install -U -egit+https://git.openstack.org/openstack/neutron#egg=neutron
|
|
fi
|
|
|
|
pip install -U $*
|
|
exit $?
|