diff options
author | Bradley Burns <56638814+bradb423@users.noreply.github.com> | 2022-01-22 20:14:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-22 12:14:23 -0800 |
commit | cbe2e205dac99f20afff4ccdeca21fd10d596565 (patch) | |
tree | 565406a74160d301741556397c43473e38459014 /coverage/config.py | |
parent | 2cc2254581dad57719b155b4d349d4f6fdd65d2d (diff) | |
download | python-coveragepy-git-cbe2e205dac99f20afff4ccdeca21fd10d596565.tar.gz |
feat: add "lcov" command for generating LCOV reports
* Add LCOV functionality into coverage.py
* Add testing for the LCOV reporter
* Add documentation for the LCOV reporter
Diffstat (limited to 'coverage/config.py')
-rw-r--r-- | coverage/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/coverage/config.py b/coverage/config.py index 9835e341..75217def 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -227,6 +227,9 @@ class CoverageConfig: self.json_pretty_print = False self.json_show_contexts = False + # Default output filename for lcov_reporter + self.lcov_output = "coverage.lcov" + # Defaults for [paths] self.paths = collections.OrderedDict() |