From 4f37c1e91c8557f2feaad93b05ad3a9ca1f83aa2 Mon Sep 17 00:00:00 2001 From: TerryHowe Date: Thu, 23 Apr 2015 19:41:31 -0600 Subject: [PATCH] Add post hook file for a functional test gate Add a post hook file for a functional test gate. Right now, the script returns success no matter what. I'd like to monitor how it goes and eventually make it live. I figure changing the script to return a correct result will be easier than changing the gate. Change-Id: Ia97ce6cb86902e43c6a9942f7f866a8b7baeccbb --- post_test_hook.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 post_test_hook.sh diff --git a/post_test_hook.sh b/post_test_hook.sh new file mode 100755 index 00000000..c4b758d9 --- /dev/null +++ b/post_test_hook.sh @@ -0,0 +1,21 @@ +#!/bin/bash +# +# This is a script that kicks off a series of functional tests against a +# OpenStack devstack cloud. This script is intended to work as a gate +# in project-config for the Python SDK. + +DIR=$(cd $(dirname "$0") && pwd) + +echo "Running SDK functional test suite" +sudo -H -u stack -i <