Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit df8d446

Browse files
tacaswelldstansby
authored andcommitted
ENH: tweak output a bit to be more readable
1 parent 64126cb commit df8d446

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/tests/backend_driver_sgskip.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,9 @@ def parse_options():
215215
print('Backend %s took %1.2f minutes to complete' % (backend, elapsed))
216216
failed = failures[backend]
217217
if failed:
218-
print(' Failures: %s' % failed)
218+
print(' Failures: ')
219+
for f in failed:
220+
print(' {!r}'.format(f))
219221
if 'template' in times:
220222
print('\ttemplate ratio %1.3f, template residual %1.3f' % (
221223
elapsed / times['template'], elapsed - times['template']))

0 commit comments

Comments
 (0)