8fb54885bf
* support separate role argspec file in ansible-doc * support separate role argspec file in ansible-core * support both .yml and .yaml extensions on argspec file in ansible-doc * fix filename building bug and rename some argspec files to test variations * use yaml extensions from constants * add superfluous meta/main.yml files to tests * Update lib/ansible/cli/doc.py Co-authored-by: Sam Doran <sdoran@redhat.com> * update docs * ci_complete * add changelog and allow for main.yml variations * add collection role testing Co-authored-by: Sam Doran <sdoran@redhat.com>
13 lines
503 B
YAML
13 lines
503 B
YAML
# This meta/main.yml exists to test that it is NOT read, with preference being
|
|
# given to the meta/argument_specs.yml file. This spec contains additional
|
|
# entry points (groot, foo) that the argument_specs.yml does not. If this file
|
|
# were read, the additional entrypoints would show up in --list output, breaking
|
|
# tests.
|
|
---
|
|
argument_specs:
|
|
main:
|
|
short_description: test_role1 from roles subdir
|
|
groot:
|
|
short_description: I am Groot
|
|
foo:
|
|
short_description: I am Foo
|