diff options
author | Kate Case <kcase@redhat.com> | 2023-05-03 21:46:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 21:46:19 -0400 |
commit | 65eaf174d90485c566d71ec9b49365cb5bc494ba (patch) | |
tree | 067211467cf9fcb8ccd90541af005214c9f1f398 /tests/integration/targets/vyos_ospfv3/tasks/main.yaml | |
parent | 65026b8bc3040315e87464eeecf81c1989c9cee5 (diff) | |
download | vyos.vyos-65eaf174d90485c566d71ec9b49365cb5bc494ba.tar.gz vyos.vyos-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_ospfv3/tasks/main.yaml')
-rw-r--r-- | tests/integration/targets/vyos_ospfv3/tasks/main.yaml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/integration/targets/vyos_ospfv3/tasks/main.yaml b/tests/integration/targets/vyos_ospfv3/tasks/main.yaml index 6b7d046..9a3359e 100644 --- a/tests/integration/targets/vyos_ospfv3/tasks/main.yaml +++ b/tests/integration/targets/vyos_ospfv3/tasks/main.yaml @@ -1,9 +1,11 @@ --- -- include: cli.yaml +- name: Run CLI tests + ansible.builtin.include_tasks: cli.yaml tags: - network_cli -- include: redirection.yaml +- name: Run redirection CLI tests + ansible.builtin.include_tasks: redirection.yaml when: ansible_version.full is version('2.10.0', '>=') tags: - network_cli |