Print a bunch of asterisks before the failure summary, to separate it
from the last failure report.
This commit is contained in:
parent
1bb515b0e5
commit
af00a46599
|
@ -885,6 +885,7 @@ see its docs for details.
|
|||
for thing, count in passed:
|
||||
print " %3d tests in %s" % (count, thing)
|
||||
if failed:
|
||||
print "*" * 65
|
||||
print len(failed), "items had failures:"
|
||||
failed.sort()
|
||||
for thing, (f, t) in failed:
|
||||
|
|
Loading…
Reference in New Issue