diff options
Diffstat (limited to 'coverage/summary.py')
-rw-r--r-- | coverage/summary.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coverage/summary.py b/coverage/summary.py index fe73c678..24aa30f2 100644 --- a/coverage/summary.py +++ b/coverage/summary.py @@ -20,11 +20,12 @@ class SummaryReporter: self.branches = coverage.get_data().has_arcs() self.outfile = None self.output_format = self.config.format or "text" + if self.output_format not in {"text", "markdown", "total"}: + raise ConfigError(f"Unknown report format choice: {self.output_format!r}") self.fr_analysis = [] self.skipped_count = 0 self.empty_count = 0 self.total = Numbers(precision=self.config.precision) - self.fmt_err = "%s %s: %s" def write(self, line): """Write a line to the output, adding a newline.""" |