dde3725bd3
This is due to the fact that we no longer use the requirements. This was done in commit 34568342ce37586cff9fe3fe462d3e722a4d4c04. From now one we will have a specific version that matches the vmware-nsx version. Change-Id: I528194276a39c9434d60312f13e358afab1c404b
22 lines
578 B
Bash
Executable File
22 lines
578 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
DIR=$(dirname $0)
|
|
${DIR}/tox_install_project.sh neutron neutron $*
|
|
${DIR}/tox_install_project.sh networking-l2gw networking_l2gw $*
|
|
${DIR}/tox_install_project.sh networking-sfc networking_sfc $*
|
|
${DIR}/tox_install_project.sh neutron-lbaas neutron_lbaas $*
|
|
${DIR}/tox_install_project.sh tap-as-a-service neutron_taas $*
|
|
${DIR}/tox_install_project.sh vmware-nsxlib vmware_nsxlib $*
|
|
|
|
CONSTRAINTS_FILE=$1
|
|
shift
|
|
|
|
install_cmd="pip install"
|
|
if [ $CONSTRAINTS_FILE != "unconstrained" ]; then
|
|
install_cmd="$install_cmd -c$CONSTRAINTS_FILE"
|
|
fi
|
|
|
|
$install_cmd -U $*
|