summaryrefslogtreecommitdiffstats
path: root/awx_collection/tools
diff options
context:
space:
mode:
authorAdam Miller <admiller@redhat.com>2024-03-25 20:33:37 +0100
committerChris Meyers <chrismeyersfsu@users.noreply.github.com>2024-03-27 20:13:43 +0100
commit2034cca3a9f5cf8833fd476bd1a19f6f870fd709 (patch)
tree3b4b8668d041989c75eb00d001f0fc4de5fd3feb /awx_collection/tools
parentFix websocket relay. Set autocommit so conn.notifies() does not blocks foreve... (diff)
downloadawx-2034cca3a9f5cf8833fd476bd1a19f6f870fd709.tar.xz
awx-2034cca3a9f5cf8833fd476bd1a19f6f870fd709.zip
update playbooks to use fqcn
Signed-off-by: Adam Miller <admiller@redhat.com>
Diffstat (limited to 'awx_collection/tools')
-rw-r--r--awx_collection/tools/integration_testing.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/awx_collection/tools/integration_testing.yml b/awx_collection/tools/integration_testing.yml
index 363429123d..307eb2a2a9 100644
--- a/awx_collection/tools/integration_testing.yml
+++ b/awx_collection/tools/integration_testing.yml
@@ -10,7 +10,7 @@
test: ad_hoc_command,host,role
tasks:
- name: DEBUG - make sure variables are what we expect
- debug:
+ ansible.builtin.debug:
msg: |
Running tests at location:
{{ loc_tests }}
@@ -18,7 +18,7 @@
{{ test | trim | split(',') }}
- name: "Include test targets"
- include_tasks: "{{ loc_tests }}{{ test_name }}/tasks/main.yml"
+ ansible.builtin.include_tasks: "{{ loc_tests }}{{ test_name }}/tasks/main.yml"
loop: "{{ test | trim | split(',') }}"
loop_control:
loop_var: test_name