Use runtime instead of datetime for test output.

This commit is contained in:
Matt Clay 2018-08-23 10:23:19 -07:00
commit 31a5b874a1
3 changed files with 13 additions and 2 deletions

10
test/utils/shippable/timing.py Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env python3
import sys
import time
start = time.time()
for line in sys.stdin:
seconds = time.time() - start
sys.stdout.write('%02d:%02d %s' % (seconds // 60, seconds % 60, line))