a951f5f929
Credits to networking-midonet tox_install* files. Change-Id: I3ddf84317501ef516a33717b71f66399b9b26875
21 lines
517 B
Bash
Executable File
21 lines
517 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 $*
|
|
|
|
CONSTRAINTS_FILE=$1
|
|
shift
|
|
|
|
install_cmd="pip install"
|
|
if [ $CONSTRAINTS_FILE != "unconstrained" ]; then
|
|
install_cmd="$install_cmd -c$CONSTRAINTS_FILE"
|
|
fi
|
|
|
|
$install_cmd -U $*
|