diff options
Diffstat (limited to 'tests/integration/targets/vyos_facts/tasks')
-rw-r--r-- | tests/integration/targets/vyos_facts/tasks/cli.yaml | 4 | ||||
-rw-r--r-- | tests/integration/targets/vyos_facts/tasks/main.yaml | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/tests/integration/targets/vyos_facts/tasks/cli.yaml b/tests/integration/targets/vyos_facts/tasks/cli.yaml index 90f265f..b23cb60 100644 --- a/tests/integration/targets/vyos_facts/tasks/cli.yaml +++ b/tests/integration/targets/vyos_facts/tasks/cli.yaml @@ -14,9 +14,13 @@ with_items: '{{ test_items }}' loop_control: loop_var: test_case_to_run + tags: + - network_cli - name: run test case (connection=local) include: '{{ test_case_to_run }} ansible_connection=local' with_first_found: '{{ test_items }}' loop_control: loop_var: test_case_to_run + tags: + - local diff --git a/tests/integration/targets/vyos_facts/tasks/main.yaml b/tests/integration/targets/vyos_facts/tasks/main.yaml index fb74fa1..676b8ec 100644 --- a/tests/integration/targets/vyos_facts/tasks/main.yaml +++ b/tests/integration/targets/vyos_facts/tasks/main.yaml @@ -1,9 +1,7 @@ --- - include: cli.yaml - tags: - - cli - include: redirection.yaml when: ansible_version.full is version('2.10.0', '>=') tags: - - redirection + - network_cli |