diff options
author | Krystian Kichewko <krystiankichewko@gmail.com> | 2014-11-19 22:24:42 +0000 |
---|---|---|
committer | Krystian Kichewko <krystiankichewko@gmail.com> | 2014-11-19 22:24:42 +0000 |
commit | df5b3c800fdf4a2eef373196b1f0a166279a3566 (patch) | |
tree | 133ec32f855b61d0a4d93e04e0ee4b6c888b8d9f /coverage/config.py | |
parent | ab72777fedc76497fee561642e85ea09bc4624e1 (diff) | |
download | python-coveragepy-df5b3c800fdf4a2eef373196b1f0a166279a3566.tar.gz |
Add skip-covered option.
Diffstat (limited to 'coverage/config.py')
-rw-r--r-- | coverage/config.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/coverage/config.py b/coverage/config.py index 4d599ee..ac895f7 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -160,6 +160,7 @@ class CoverageConfig(object): self.partial_always_list = DEFAULT_PARTIAL_ALWAYS[:] self.precision = 0 self.show_missing = False + self.skip_covered = False # Defaults for [html] self.html_dir = "htmlcov" @@ -248,6 +249,7 @@ class CoverageConfig(object): ('partial_always_list', 'report:partial_branches_always', 'linelist'), ('precision', 'report:precision', 'int'), ('show_missing', 'report:show_missing', 'boolean'), + ('skip_covered', 'report:skip_covered', 'boolean'), # [html] ('html_dir', 'html:directory'), |