Locate post_test_hook.sh

Change-Id: I3edaab0c4b6458701f4a1988d25bf400e8f18729
This commit is contained in:
Dean Troyer 2016-12-23 14:55:08 -06:00
parent 31483caada
commit e172a5e410
1 changed files with 8 additions and 9 deletions

View File

@ -28,16 +28,15 @@
export DEVSTACK_LOCAL_CONFIG="enable_plugin neutron https://git.openstack.org/openstack/neutron"
export ENABLED_SERVICES=q-qos
# NOTE(stevemar): After the newton release was tagged the file was moved.
# But, we run functional tests for various stable releases
# (mitaka, and newton).
# TODO(stevemar): Remove this check when Newton is EOL'ed.
hook_location=$BASE/new/python-openstackclient/openstackclient/tests/functional/post_test_hook.sh
if [ ! -f "$hook_location" ]; then
hook_location=$BASE/new/python-openstackclient/openstackclient/post_test_hook.sh
fi
function post_test_hook {{
# NOTE(stevemar): After the newton release was tagged the file was moved.
# But, we run functional tests for various stable releases
# (mitaka, and newton).
# TODO(stevemar): Remove this check when Newton is EOL'ed.
hook_location=$BASE/new/python-openstackclient/openstackclient/tests/functional/post_test_hook.sh
if [ ! -f "$hook_location" ]; then
hook_location=$BASE/new/python-openstackclient/openstackclient/post_test_hook.sh
fi
bash -xe $hook_location
}}
export -f post_test_hook