mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-01 14:51:27 -07:00
Add --include and --omit options to ansible-test coverage report (#38061)
* Support --include and --omit with ansible-test coverage report * Code format change
This commit is contained in:
parent
9b1e97424e
commit
a19a21d715
3 changed files with 17 additions and 0 deletions
|
@ -246,3 +246,5 @@ class CoverageReportConfig(CoverageConfig):
|
|||
super(CoverageReportConfig, self).__init__(args)
|
||||
|
||||
self.show_missing = args.show_missing # type: bool
|
||||
self.include = args.include # type: str
|
||||
self.omit = args.omit # type: str
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue