#12074: remove the /0 when there are no failures.

This commit is contained in:
Ezio Melotti 2011-05-24 01:00:10 +03:00
parent 200fe3d747
commit 84f75c680c
1 changed files with 4 additions and 2 deletions

View File

@ -582,7 +582,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
continue
accumulate_result(test, result)
if not quiet:
print("[{1:{0}}{2}/{3}] {4}".format(
fmt = "[{1:{0}}{2}/{3}] {4}" if bad else "[{1:{0}}{2}] {4}"
print(fmt.format(
test_count_width, test_index, test_count,
len(bad), test))
if stdout:
@ -601,7 +602,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
else:
for test_index, test in enumerate(tests, 1):
if not quiet:
print("[{1:{0}}{2}/{3}] {4}".format(
fmt = "[{1:{0}}{2}/{3}] {4}" if bad else "[{1:{0}}{2}] {4}"
print(fmt.format(
test_count_width, test_index, test_count, len(bad), test))
sys.stdout.flush()
if trace: