We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ed5915 commit 7f3e6cdCopy full SHA for 7f3e6cd
coverage/lcovreport.py
@@ -121,7 +121,9 @@ def lcov_arcs(
121
# this probably means 'line' was never executed at all.
122
# Cross-check with the line stats.
123
assert len(executed_arcs[line]) == 0
124
- assert line in analysis.missing
+ assert line in analysis.missing, (
125
+ f"In {fr.filename}: {line=} should be in analysis.missing={sorted(analysis.missing)}"
126
+ )
127
destinations = [
128
(dst, "-") for dst in missing_arcs[line]
129
]
0 commit comments