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:
Matt Martz 2018-03-28 18:42:57 -05:00 committed by GitHub
parent 9b1e97424e
commit a19a21d715
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 0 deletions

View file

@ -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