update tox for stable branch

Today the dev target in tox doesn't account for stable
branches. This patch updates it to ensure required
depedencies are coming from the stable branch and not
master.

Change-Id: I7832cf45fb3fe14121ead8db1ecc147d3004f7b8
This commit is contained in:
Adit Sarfaty 2019-10-27 14:29:36 +02:00
parent 27a93cb2e6
commit 484ed9febd
1 changed files with 9 additions and 8 deletions

17
tox.ini
View File

@ -28,14 +28,15 @@ commands = false
# https://pip.pypa.io/en/stable/reference/pip_install/#editable-installs
# note that order is important to ensure dependencies don't override
commands =
pip install -q -e "git+https://opendev.org/openstack/networking-l2gw#egg=networking_l2gw"
pip install -q -e "git+https://opendev.org/openstack/networking-sfc#egg=networking_sfc"
pip install -q -e "git+https://opendev.org/openstack/neutron-fwaas#egg=neutron_fwaas"
pip install -q -e "git+https://opendev.org/openstack/neutron-dynamic-routing#egg=neutron_dynamic_routing"
pip install -q -e "git+https://opendev.org/openstack/neutron-vpnaas#egg=neutron_vpnaas"
pip install -q -e "git+https://opendev.org/openstack/octavia#egg=octavia"
pip install -q -e "git+https://opendev.org/openstack/vmware-nsxlib#egg=vmware_nsxlib"
pip install -q -e "git+https://opendev.org/openstack/neutron#egg=neutron"
pip install -q -e "git+https://git.openstack.org/openstack/networking-l2gw@stable/train#egg=networking_l2gw"
pip install -q -e "git+https://git.openstack.org/openstack/networking-sfc@stable/train#egg=networking_sfc"
pip install -q -e "git+https://git.openstack.org/openstack/neutron-lbaas@stable/train#egg=neutron_lbaas"
pip install -q -e "git+https://git.openstack.org/openstack/neutron-fwaas@stable/train#egg=neutron_fwaas"
pip install -q -e "git+https://git.openstack.org/openstack/neutron-dynamic-routing@stable/train#egg=neutron_dynamic_routing"
pip install -q -e "git+https://git.openstack.org/openstack/neutron-vpnaas@stable/train#egg=neutron_vpnaas"
pip install -q -e "git+https://git.openstack.org/openstack/octavia@stable/train#egg=octavia"
pip install -q -e "git+https://git.openstack.org/openstack/vmware-nsxlib#egg=vmware_nsxlib"
pip install -q -e "git+https://git.openstack.org/openstack/neutron@stable/train#egg=neutron"
[testenv:functional]