From 44699da49ffa22c3665ad298dce44218fce3f589 Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Wed, 20 Jan 2021 13:20:38 -0800 Subject: [PATCH] round elapsed minutes properly --- hack/jenkins/windows_integration_test_docker.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/jenkins/windows_integration_test_docker.ps1 b/hack/jenkins/windows_integration_test_docker.ps1 index a51a00820b..0442500f3f 100644 --- a/hack/jenkins/windows_integration_test_docker.ps1 +++ b/hack/jenkins/windows_integration_test_docker.ps1 @@ -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