From 529deae407161f73a4375333eebe76b10c092532 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Thu, 12 Jan 2023 13:13:45 -0300 Subject: [PATCH] ansible-lint: Fix file kind and ignores. ansible-lint must ignore Azure configuration, and handle non-test files with the proper kind (tasks or playbook). --- .ansible-lint | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.ansible-lint b/.ansible-lint index 7aeb2ef5..3fde5995 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -16,6 +16,11 @@ exclude_paths: kinds: - playbook: '**/tests/**/test_*.yml' - playbook: '**/playbooks/**/*.yml' + - playbook: '**/tests/ca-less/install_*_without_ca.yml' + - playbook: '**/tests/ca-less/clean_up_certificates.yml' + - playbook: '**/tests/external-signed-ca-with-automatic-copy/install-server-with-external-ca-with-automatic-copy.yml' + - playbook: '**/tests/external-signed-ca-with-manual-copy/install-server-with-external-ca-with-manual-copy.yml' + - playbook: '**/tests/user/create_users_json.yml' - tasks: '**/tasks_*.yml' - tasks: '**/env_*.yml' -- GitLab