diff --git a/tools/gate/integration/commons b/tools/gate/integration/commons new file mode 100644 index 00000000..8283fb6a --- /dev/null +++ b/tools/gate/integration/commons @@ -0,0 +1,6 @@ +#!/bin/bash + +set -ex + +export SAHARA_DASHBOARD_SCREENSHOTS_DIR="integration_tests_screenshots" + diff --git a/tools/gate/integration/post_test_hook.sh b/tools/gate/integration/post_test_hook.sh new file mode 100755 index 00000000..cf3ddc84 --- /dev/null +++ b/tools/gate/integration/post_test_hook.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +# This script will be executed inside post_test_hook function in devstack gate + +set -ex +source commons $@ diff --git a/tools/gate/integration/pre_test_hook.sh b/tools/gate/integration/pre_test_hook.sh new file mode 100755 index 00000000..a6ec06df --- /dev/null +++ b/tools/gate/integration/pre_test_hook.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +# This script will be executed inside pre_test_hook function in devstack gate + +set -ex +source commons $@