3759da2874
The platform support will be changing so we will remove this in the mean time. The patch also remove false positives for test failures. Change-Id: I118010085d305883f521fa01a5fd341e775eea5a
21 lines
515 B
Bash
Executable File
21 lines
515 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 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 $*
|