summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collections_relative_imports/runme.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/collections_relative_imports/runme.sh')
-rwxr-xr-xtest/integration/targets/collections_relative_imports/runme.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/integration/targets/collections_relative_imports/runme.sh b/test/integration/targets/collections_relative_imports/runme.sh
new file mode 100755
index 0000000..754efaf
--- /dev/null
+++ b/test/integration/targets/collections_relative_imports/runme.sh
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+
+set -eux
+
+# we need multiple plays, and conditional import_playbook is noisy and causes problems, so choose here which one to use...
+if [[ ${INVENTORY_PATH} == *.winrm ]]; then
+ export TEST_PLAYBOOK=windows.yml
+else
+ export TEST_PLAYBOOK=test.yml
+
+fi
+
+ANSIBLE_COLLECTIONS_PATH="${PWD}/collection_root" ansible-playbook "${TEST_PLAYBOOK}" -i "${INVENTORY_PATH}" "$@"