summaryrefslogtreecommitdiff
path: root/test/integration/targets/callback_log_plays
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/callback_log_plays')
-rw-r--r--test/integration/targets/callback_log_plays/aliases1
-rw-r--r--test/integration/targets/callback_log_plays/ping_log.yml4
-rwxr-xr-xtest/integration/targets/callback_log_plays/runme.sh16
3 files changed, 0 insertions, 21 deletions
diff --git a/test/integration/targets/callback_log_plays/aliases b/test/integration/targets/callback_log_plays/aliases
deleted file mode 100644
index b59832142f..0000000000
--- a/test/integration/targets/callback_log_plays/aliases
+++ /dev/null
@@ -1 +0,0 @@
-shippable/posix/group3
diff --git a/test/integration/targets/callback_log_plays/ping_log.yml b/test/integration/targets/callback_log_plays/ping_log.yml
deleted file mode 100644
index 8015726ebb..0000000000
--- a/test/integration/targets/callback_log_plays/ping_log.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-- hosts: localhost
- gather_facts: false
- tasks:
- - ping:
diff --git a/test/integration/targets/callback_log_plays/runme.sh b/test/integration/targets/callback_log_plays/runme.sh
deleted file mode 100755
index 059f8976ef..0000000000
--- a/test/integration/targets/callback_log_plays/runme.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env bash
-
-set -eux
-
-export ANSIBLE_CALLBACK_WHITELIST="log_plays,${ANSIBLE_CALLBACK_WHITELIST:-}"
-
-# run play, should create log and dir if needed
-export ANSIBLE_LOG_FOLDER="logit"
-ansible-playbook ping_log.yml -v "$@"
-[[ -f "${ANSIBLE_LOG_FOLDER}/localhost" ]]
-
-# now force it to fail
-export ANSIBLE_LOG_FOLDER="logit.file"
-touch "${ANSIBLE_LOG_FOLDER}"
-ansible-playbook ping_log.yml -v "$@" 2>&1| grep 'Failure using method (v2_runner_on_ok) in callback plugin'
-[[ ! -f "${ANSIBLE_LOG_FOLDER}/localhost" ]]