summaryrefslogtreecommitdiff
path: root/tests/integration/targets/vyos_l3_interfaces
diff options
context:
space:
mode:
authorKate Case <kcase@redhat.com>2023-05-09 08:55:34 -0400
committerGitHub <noreply@github.com>2023-05-09 08:55:34 -0400
commit5476af448b35c76154a3d6edfca1eb1edb1a4ee1 (patch)
tree3c62b1b6ec8f581314d19b9685f1595ab562f6d9 /tests/integration/targets/vyos_l3_interfaces
parentf1213dece775d30f6653182bfecee1a47d1e6504 (diff)
downloadvyos.vyos-5476af448b35c76154a3d6edfca1eb1edb1a4ee1.tar.gz
vyos.vyos-5476af448b35c76154a3d6edfca1eb1edb1a4ee1.zip
Fix integration test connection var (#325)
* Fix integration test connection var * Fix straggler
Diffstat (limited to 'tests/integration/targets/vyos_l3_interfaces')
-rw-r--r--tests/integration/targets/vyos_l3_interfaces/tasks/redirection.yaml4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/integration/targets/vyos_l3_interfaces/tasks/redirection.yaml b/tests/integration/targets/vyos_l3_interfaces/tasks/redirection.yaml
index a368b76..7f3fc71 100644
--- a/tests/integration/targets/vyos_l3_interfaces/tasks/redirection.yaml
+++ b/tests/integration/targets/vyos_l3_interfaces/tasks/redirection.yaml
@@ -11,7 +11,9 @@
test_items: "{{ shortname_test_cases.files | map(attribute='path') | list }}"
- name: Run test case (connection=ansible.netcommon.network_cli)
- ansible.builtin.include_tasks: "{{ test_case_to_run }} ansible_connection=ansible.netcommon.network_cli"
+ ansible.builtin.include_tasks: "{{ test_case_to_run }}"
+ vars:
+ ansible_connection: ansible.netcommon.network_cli
with_items: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run