https://github.com/ansible-collections/partner-certification-checker/blob/main/README.md Unfortunately we cannot use the checkers provided by their team because they assume the git repo is in collection format - you cannot convert to collection format first then point the checkers at that collection. Instead, implement our own checkers that do the same (and more) - check with multiple versions of ansible-lint and ansible-test to ensure we cover: * all supported versions of EL * Automation Hub gating * the latest versions of Ansible, including the latest milestone version This requires the latest version of tox-lsr Signed-off-by: Rich Megginson <rmeggins@redhat.com>
28 lines
698 B
Plaintext
28 lines
698 B
Plaintext
---
|
|
profile: production
|
|
kinds:
|
|
- yaml: "**/meta/collection-requirements.yml"
|
|
- playbook: "**/tests/get_coverage.yml"
|
|
- yaml: "**/tests/collection-requirements.yml"
|
|
- playbook: "**/tests/tests_*.yml"
|
|
- playbook: "**/tests/setup-snapshot.yml"
|
|
- tasks: "**/tests/*.yml"
|
|
- playbook: "**/tests/playbooks/*.yml"
|
|
- tasks: "**/tests/tasks/*.yml"
|
|
- tasks: "**/tests/tasks/*/*.yml"
|
|
- vars: "**/tests/vars/*.yml"
|
|
- playbook: "**/examples/*.yml"
|
|
skip_list:
|
|
- fqcn-builtins
|
|
- var-naming[no-role-prefix]
|
|
exclude_paths:
|
|
- tests/roles/
|
|
- .github/
|
|
- .markdownlint.yaml
|
|
- examples/roles/
|
|
- .collection/
|
|
mock_roles:
|
|
- linux-system-roles.aide
|
|
supported_ansible_also:
|
|
- "2.14.0"
|