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

Skip to content

Commit a51cfc8

Browse files
committed
ENH: tweak output a bit to be more readable
1 parent a0037ab commit a51cfc8

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
@@ -221,7 +221,9 @@ def parse_options():
221221
print('Backend %s took %1.2f minutes to complete' % (backend, elapsed))
222222
failed = failures[backend]
223223
if failed:
224-
print(' Failures: %s' % failed)
224+
print(' Failures: ')
225+
for f in failed:
226+
print(' {!r}'.format(f))
225227
if 'template' in times:
226228
print('\ttemplate ratio %1.3f, template residual %1.3f' % (
227229
elapsed / times['template'], elapsed - times['template']))

0 commit comments

Comments
 (0)