round elapsed minutes properly

pull/10145/head
Sharif Elgamal 2021-01-20 13:20:38 -08:00
parent f5a7aa2201
commit 44699da49f
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ If($env:result -eq 0){
$ended=Get-Date -UFormat %s
$elapsed=$ended-$started
$elapsed=$elapsed/60
$elapsed=[math]::Round($elapsed)
$elapsed=[math]::Round($elapsed, 2)
Get-Content testout.txt | go tool test2json -t > testout.json