diff --git a/test/integration/targets/win_eventlog/tasks/main.yml b/test/integration/targets/win_eventlog/tasks/main.yml index 5fec3ac34a..dcc075fcc8 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 9a1790a592..142a3897a6 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 542d13e5f4..522a5e59c9 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 c2297ee016..64247200b4 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 4ff71fa585..7d2a342e96 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 927ba37d24..cf04ea3b5b 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 ff7f15f875..b7cd0c5624 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 b4d49e6781..735d55b1a9 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 2af6c8b727..ed4dc22877 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