summaryrefslogtreecommitdiff
path: root/tests/integration/targets/vyos_vlan
diff options
context:
space:
mode:
authorKate Case <kcase@redhat.com>2023-05-03 21:46:19 -0400
committerGitHub <noreply@github.com>2023-05-03 21:46:19 -0400
commit65eaf174d90485c566d71ec9b49365cb5bc494ba (patch)
tree067211467cf9fcb8ccd90541af005214c9f1f398 /tests/integration/targets/vyos_vlan
parent65026b8bc3040315e87464eeecf81c1989c9cee5 (diff)
downloadvyos-ansible-collection-65eaf174d90485c566d71ec9b49365cb5bc494ba.tar.gz
vyos-ansible-collection-65eaf174d90485c566d71ec9b49365cb5bc494ba.zip
Add ansible-lint (#322)
* Add ansible-lint * Fix some tasks * Ignore ignore_errors * Stop prettier and yamllint from fighting
Diffstat (limited to 'tests/integration/targets/vyos_vlan')
-rw-r--r--tests/integration/targets/vyos_vlan/tasks/cli.yaml13
-rw-r--r--tests/integration/targets/vyos_vlan/tasks/main.yaml3
2 files changed, 9 insertions, 7 deletions
diff --git a/tests/integration/targets/vyos_vlan/tasks/cli.yaml b/tests/integration/targets/vyos_vlan/tasks/cli.yaml
index b2746ce..d06a647 100644
--- a/tests/integration/targets/vyos_vlan/tasks/cli.yaml
+++ b/tests/integration/targets/vyos_vlan/tasks/cli.yaml
@@ -1,16 +1,17 @@
---
-- name: collect all cli test cases
- find:
+- name: Collect all cli test cases
+ ansible.builtin.find:
paths: "{{ role_path }}/tests/cli"
patterns: "{{ testcase }}.yaml"
register: test_cases
delegate_to: localhost
-- name: set test_items
- set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
+- name: Set test_items
+ ansible.builtin.set_fact:
+ test_items: "{{ test_cases.files | map(attribute='path') | list }}"
-- name: run test case (connection=ansible.netcommon.network_cli)
- include: "{{ test_case_to_run }} ansible_connection=ansible.netcommon.network_cli"
+- name: Run test case (connection=ansible.netcommon.network_cli)
+ ansible.builtin.include_tasks: "{{ test_case_to_run }} ansible_connection=ansible.netcommon.network_cli"
with_items: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run
diff --git a/tests/integration/targets/vyos_vlan/tasks/main.yaml b/tests/integration/targets/vyos_vlan/tasks/main.yaml
index 07b0f2e..9201bd6 100644
--- a/tests/integration/targets/vyos_vlan/tasks/main.yaml
+++ b/tests/integration/targets/vyos_vlan/tasks/main.yaml
@@ -1,2 +1,3 @@
---
-- include: cli.yaml
+- name: Run CLI tests
+ ansible.builtin.include_tasks: cli.yaml