diff --git a/test/integration/targets/win_eventlog/tasks/main.yml b/test/integration/targets/win_eventlog/tasks/main.yml index 5fec3ac34a3..dcc075fcc89 100644 --- a/test/integration/targets/win_eventlog/tasks/main.yml +++ b/test/integration/targets/win_eventlog/tasks/main.yml @@ -1,10 +1,10 @@ - name: Run tests for win_eventlog in normal mode - include_tasks: tests.yml + import_tasks: tests.yml vars: in_check_mode: no - name: Run tests for win_eventlog in check-mode - include_tasks: tests.yml + import_tasks: tests.yml vars: in_check_mode: yes check_mode: yes diff --git a/test/integration/targets/win_eventlog_entry/tasks/main.yml b/test/integration/targets/win_eventlog_entry/tasks/main.yml index 9a1790a592c..142a3897a6d 100644 --- a/test/integration/targets/win_eventlog_entry/tasks/main.yml +++ b/test/integration/targets/win_eventlog_entry/tasks/main.yml @@ -16,12 +16,12 @@ block: - name: Test in normal mode - include_tasks: tests.yml + import_tasks: tests.yml vars: in_check_mode: no - name: Test in check-mode - include_tasks: tests.yml + import_tasks: tests.yml vars: in_check_mode: yes check_mode: yes diff --git a/test/integration/targets/win_firewall/tasks/main.yml b/test/integration/targets/win_firewall/tasks/main.yml index 542d13e5f43..522a5e59c96 100644 --- a/test/integration/targets/win_firewall/tasks/main.yml +++ b/test/integration/targets/win_firewall/tasks/main.yml @@ -25,13 +25,13 @@ - name: Test in normal mode - include: tests.yml + import_tasks: tests.yml vars: in_check_mode: no - name: Test in check-mode - include: tests.yml + import_tasks: tests.yml vars: in_check_mode: yes check_mode: yes diff --git a/test/integration/targets/win_group_membership/tasks/main.yml b/test/integration/targets/win_group_membership/tasks/main.yml index c2297ee0168..64247200b44 100644 --- a/test/integration/targets/win_group_membership/tasks/main.yml +++ b/test/integration/targets/win_group_membership/tasks/main.yml @@ -15,13 +15,13 @@ block: - name: Test in normal mode - include_tasks: tests.yml + import_tasks: tests.yml vars: win_local_group: WinGroupMembershipTest in_check_mode: no - name: Test in check-mode - include_tasks: tests.yml + import_tasks: tests.yml vars: win_local_group: WinGroupMembershipTest in_check_mode: yes diff --git a/test/integration/targets/win_scheduled_task/tasks/main.yml b/test/integration/targets/win_scheduled_task/tasks/main.yml index 4ff71fa5858..7d2a342e96c 100644 --- a/test/integration/targets/win_scheduled_task/tasks/main.yml +++ b/test/integration/targets/win_scheduled_task/tasks/main.yml @@ -5,12 +5,12 @@ - block: # old tests, remove once new code is considered stable - name: Test in normal mode - include_tasks: tests.yml + import_tasks: tests.yml vars: in_check_mode: no - name: Test in check-mode - include_tasks: tests.yml + import_tasks: tests.yml vars: in_check_mode: yes check_mode: yes @@ -18,7 +18,7 @@ - include_tasks: clean.yml - name: Test failure scenarios - include: failures.yml + include_tasks: failures.yml - name: Test normal scenarios include_tasks: new_tests.yml diff --git a/test/integration/targets/win_shortcut/tasks/main.yml b/test/integration/targets/win_shortcut/tasks/main.yml index 927ba37d247..cf04ea3b5ba 100644 --- a/test/integration/targets/win_shortcut/tasks/main.yml +++ b/test/integration/targets/win_shortcut/tasks/main.yml @@ -17,18 +17,18 @@ # along with Ansible. If not, see . - name: Clean slate - include: clean.yml + import_tasks: clean.yml - name: Test in normal mode - include: tests.yml + import_tasks: tests.yml vars: in_check_mode: no - name: Clean slate - include: clean.yml + import_tasks: clean.yml - name: Test in check-mode - include: tests.yml + import_tasks: tests.yml vars: in_check_mode: yes check_mode: yes diff --git a/test/integration/targets/win_timezone/tasks/main.yml b/test/integration/targets/win_timezone/tasks/main.yml index ff7f15f8756..b7cd0c5624d 100644 --- a/test/integration/targets/win_timezone/tasks/main.yml +++ b/test/integration/targets/win_timezone/tasks/main.yml @@ -8,12 +8,12 @@ block: - name: Test in normal mode - include: tests.yml + import_tasks: tests.yml vars: in_check_mode: no - name: Test in check-mode - include: tests.yml + import_tasks: tests.yml vars: in_check_mode: yes check_mode: yes diff --git a/test/integration/targets/win_toast/tasks/main.yml b/test/integration/targets/win_toast/tasks/main.yml index b4d49e6781c..735d55b1a92 100644 --- a/test/integration/targets/win_toast/tasks/main.yml +++ b/test/integration/targets/win_toast/tasks/main.yml @@ -1,13 +1,13 @@ - name: Set up tests - include_tasks: setup.yml + import_tasks: setup.yml - name: Test in normal mode - include_tasks: tests.yml + import_tasks: tests.yml vars: in_check_mode: no - name: Test in check mode - include_tasks: tests.yml + import_tasks: tests.yml vars: in_check_mode: yes check_mode: yes diff --git a/test/integration/targets/win_unzip/tasks/main.yml b/test/integration/targets/win_unzip/tasks/main.yml index 2af6c8b7270..ed4dc228776 100644 --- a/test/integration/targets/win_unzip/tasks/main.yml +++ b/test/integration/targets/win_unzip/tasks/main.yml @@ -1,16 +1,16 @@ - name: Clean slate - include: clean.yml + import_tasks: clean.yml - name: Test in normal mode - include: tests.yml + import_tasks: tests.yml vars: in_check_mode: no - name: Clean slate - include: clean.yml + import_tasks: clean.yml - name: Test in check-mode - include: tests.yml + import_tasks: tests.yml vars: in_check_mode: yes check_mode: yes