mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 20:13:59 -07:00
Add --all and --stub coverage options.
ci_coverage ci_complete
This commit is contained in:
parent
8dae2ea869
commit
4daa16f9ce
3 changed files with 32 additions and 2 deletions
|
@ -516,6 +516,14 @@ def add_extra_coverage_options(parser):
|
|||
choices=lib.cover.COVERAGE_GROUPS,
|
||||
help='group output by: %s' % ', '.join(lib.cover.COVERAGE_GROUPS))
|
||||
|
||||
parser.add_argument('--all',
|
||||
action='store_true',
|
||||
help='include all python source files')
|
||||
|
||||
parser.add_argument('--stub',
|
||||
action='store_true',
|
||||
help='generate empty report of all python source files')
|
||||
|
||||
|
||||
def add_extra_docker_options(parser, integration=True):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue