We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 798a737 commit 257f4e6Copy full SHA for 257f4e6
tools/test.py
@@ -309,6 +309,8 @@ def HasRun(self, output):
309
total_seconds = (duration.microseconds +
310
(duration.seconds + duration.days * 24 * 3600) * 10**6) / 10**6
311
312
+ # duration_ms is measured in seconds and is read as such by TAP parsers.
313
+ # It should read as "duration including ms" rather than "duration in ms"
314
logger.info(' ---')
315
logger.info(' duration_ms: %d.%d' % (total_seconds, duration.microseconds / 1000))
316
logger.info(' ...')
0 commit comments