
Devstack gate now handles all of the hook timeouts itself so that individual jobs do not need to reinvent this wheel. Remove the timeout support from the functional test gate hook here as a result. Change-Id: I3819978b04faea5712c995cbe277ae42870acba9
13 lines
261 B
Bash
13 lines
261 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
VENV=${1:-"functional"}
|
|
|
|
if [ "$VENV" == "functional-adv-svcs" ]
|
|
then
|
|
export DEVSTACK_LOCAL_CONFIG="enable_plugin neutron-vpnaas git://git.openstack.org/openstack/neutron-vpnaas"
|
|
fi
|
|
|
|
$BASE/new/devstack-gate/devstack-vm-gate.sh
|