From f2d43f1f8a46179ff0f68d59abbd05188ae4335d Mon Sep 17 00:00:00 2001 From: thehedhly Date: Tue, 16 Jan 2024 14:01:05 +0100 Subject: [PATCH] Add missing ansible.cfg local & remote tests --- .github/workflows/test.yml | 6 ++++++ test/ansible.cfg | 4 ++++ 2 files changed, 10 insertions(+) create mode 100644 test/ansible.cfg diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 84d025e..631e23a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -75,6 +75,11 @@ jobs: key: ${{env.SSH_PRIVATE_KEY}} known_hosts: ${{env.SSH_KNOWN_HOSTS}} directory: test + configuration: | + [defaults] + callbacks_enabled = ansible.posix.profile_tasks, ansible.posix.timer + stdout_callback = yaml + nocows = false vault_password: test requirements: requirements.yml inventory: | @@ -97,6 +102,7 @@ jobs: with: playbook: playbook.yml directory: test + configuration: ansible.cfg requirements: requirements.yml options: --inventory hosts - name: With requirements bundle diff --git a/test/ansible.cfg b/test/ansible.cfg new file mode 100644 index 0000000..2535c29 --- /dev/null +++ b/test/ansible.cfg @@ -0,0 +1,4 @@ +[defaults] +callbacks_enabled = ansible.posix.profile_tasks, ansible.posix.timer +stdout_callback = yaml +nocows = false