From 65eaf174d90485c566d71ec9b49365cb5bc494ba Mon Sep 17 00:00:00 2001 From: Kate Case Date: Wed, 3 May 2023 21:46:19 -0400 Subject: Add ansible-lint (#322) * Add ansible-lint * Fix some tasks * Ignore ignore_errors * Stop prettier and yamllint from fighting --- tests/integration/targets/vyos_hostname/tasks/cli.yaml | 7 ++++--- tests/integration/targets/vyos_hostname/tasks/main.yaml | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'tests/integration/targets/vyos_hostname') diff --git a/tests/integration/targets/vyos_hostname/tasks/cli.yaml b/tests/integration/targets/vyos_hostname/tasks/cli.yaml index 83496e0..daccf72 100644 --- a/tests/integration/targets/vyos_hostname/tasks/cli.yaml +++ b/tests/integration/targets/vyos_hostname/tasks/cli.yaml @@ -1,6 +1,6 @@ --- - name: Collect all cli test cases - find: + ansible.builtin.find: paths: "{{ role_path }}/tests/cli" patterns: "{{ testcase }}.yaml" use_regex: true @@ -8,10 +8,11 @@ delegate_to: localhost - name: Set test_items - set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}" + 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.builtin.include_tasks: "{{ test_case_to_run }}" vars: ansible_connection: ansible.netcommon.network_cli with_items: "{{ test_items }}" diff --git a/tests/integration/targets/vyos_hostname/tasks/main.yaml b/tests/integration/targets/vyos_hostname/tasks/main.yaml index b957d2f..e637858 100644 --- a/tests/integration/targets/vyos_hostname/tasks/main.yaml +++ b/tests/integration/targets/vyos_hostname/tasks/main.yaml @@ -1,4 +1,5 @@ --- -- include: cli.yaml +- name: Run CLI tests + ansible.builtin.include_tasks: cli.yaml tags: - network_cli -- cgit v1.2.3