de182d672e
We should not use -ne with strings; instead, != should be used. This bug in the script effectively left all tox targets unconstrained. Change-Id: I867a3c7a2049e1d8e5cde76d8eb60d15880c430d
42 lines
1.2 KiB
Bash
Executable File
42 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Many of neutron's repos suffer from the problem of depending on neutron,
|
|
# but it not existing on pypi. -- Well, that's the usual issue, but in
|
|
# neutron's case, we want to import tempest directly for the api tests.
|
|
|
|
# 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.
|
|
|
|
ZUUL_CLONER=/usr/zuul-env/bin/zuul-cloner
|
|
tempest_installed=$(python -c "import tempest" 2>/dev/null ; echo $?)
|
|
|
|
set -e
|
|
|
|
install_cmd="pip install"
|
|
|
|
CONSTRAINTS_FILE=$1
|
|
shift
|
|
|
|
if [ "$CONSTRAINTS_FILE" != "unconstrained" ]; then
|
|
install_cmd="$install_cmd -c$CONSTRAINTS_FILE"
|
|
fi
|
|
|
|
if [ $tempest_installed -eq 0 ]; then
|
|
echo "Tempest already installed; using existing package"
|
|
elif [ -x "$ZUUL_CLONER" ]; then
|
|
export ZUUL_BRANCH=${ZUUL_BRANCH-$BRANCH}
|
|
pushd /tmp
|
|
$ZUUL_CLONER --cache-dir \
|
|
/opt/git \
|
|
git://git.openstack.org \
|
|
openstack/tempest
|
|
$install_cmd -e openstack/tempest
|
|
popd
|
|
else
|
|
$install_cmd -U -egit+https://git.openstack.org/openstack/tempest#egg=tempest
|
|
fi
|
|
|
|
$install_cmd -U $*
|