From f48bdb0d9e6867e4829fccd751aeb247fca9d40f Mon Sep 17 00:00:00 2001 From: Valentin Gurmeza Date: Thu, 25 May 2017 14:53:05 -0700 Subject: [PATCH] add integration runner test --- tests/integration/run_tests.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/integration/run_tests.sh diff --git a/tests/integration/run_tests.sh b/tests/integration/run_tests.sh new file mode 100644 index 0000000..7eb7b8c --- /dev/null +++ b/tests/integration/run_tests.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +ABSOLUTE_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +pushd . + +cd "$ABSOLUTE_PATH" +export PYTHONPATH=./pythonlibs/ +ansible-playbook tests.yml --diff -i 127.0.0.1, $@ + +popd >/dev/null