forked from josch/mmdebstrap
coverage.py: instead of printing the length of the skipped dictionary, print the sum of the length of lists of tests it references
This commit is contained in:
parent
51ad1426c3
commit
9ca613da0a
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ def main():
|
|||
file=sys.stderr,
|
||||
)
|
||||
if skipped:
|
||||
print("skipped %d:" % len(skipped), file=sys.stderr)
|
||||
print("skipped %d:" % sum([len(v) for v in skipped.values()]), file=sys.stderr)
|
||||
for reason, l in skipped.items():
|
||||
print(f"skipped because of {reason}:", file=sys.stderr)
|
||||
for t in l:
|
||||
|
|
Loading…
Reference in a new issue