Skip to content

Commit

Permalink
refactor: remove unused exception handling
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Feb 28, 2021
1 parent 8750045 commit f5d6043
Showing 1 changed file with 13 additions and 24 deletions.
37 changes: 13 additions & 24 deletions coverage/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from coverage import env
from coverage.report import get_analysis_to_report
from coverage.results import Numbers
from coverage.misc import NotPython, CoverageException, output_encoding
from coverage.misc import CoverageException, output_encoding


class SummaryReporter(object):
Expand Down Expand Up @@ -78,29 +78,18 @@ def report(self, morfs, outfile=None):
lines = []

for (fr, analysis) in self.fr_analysis:
try:
nums = analysis.numbers

args = (fr.relative_filename(), nums.n_statements, nums.n_missing)
if self.branches:
args += (nums.n_branches, nums.n_partial_branches)
args += (nums.pc_covered_str,)
if self.config.show_missing:
args += (analysis.missing_formatted(branches=True),)
text = fmt_coverage % args
# Add numeric percent coverage so that sorting makes sense.
args += (nums.pc_covered,)
lines.append((text, args))
except Exception:
report_it = not self.config.ignore_errors
if report_it:
typ, msg = sys.exc_info()[:2]
# NotPython is only raised by PythonFileReporter, which has a
# should_be_python() method.
if typ is NotPython and not fr.should_be_python():
report_it = False
if report_it:
self.writeout(self.fmt_err % (fr.relative_filename(), typ.__name__, msg))
nums = analysis.numbers

args = (fr.relative_filename(), nums.n_statements, nums.n_missing)
if self.branches:
args += (nums.n_branches, nums.n_partial_branches)
args += (nums.pc_covered_str,)
if self.config.show_missing:
args += (analysis.missing_formatted(branches=True),)
text = fmt_coverage % args
# Add numeric percent coverage so that sorting makes sense.
args += (nums.pc_covered,)
lines.append((text, args))

# Sort the lines and write them out.
if getattr(self.config, 'sort', None):
Expand Down

0 comments on commit f5d6043

Please sign in to comment.