From 4eeaa5b5cd468ba03a2a810241affe0ea2532a56 Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Thu, 4 Jun 2020 14:46:52 -0700 Subject: [PATCH] try Tee-File --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 9836666622..b702506e35 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -309,7 +309,7 @@ jobs: $env:KUBECONFIG="${pwd}\testhome\kubeconfig" $env:MINIKUBE_HOME="${pwd}\testhome" $ErrorActionPreference = "SilentlyContinue" - .\e2e-windows-amd64.exe --minikube-start-args="--driver=hyperv" --test.timeout=15m --timeout-multiplier=3 --test.v --test.run="TestFunctional" --binary="./minikube-windows-amd64.exe" 2>&1 | Out-File -FilePath .\report\testout.txt -Encoding ASCII + .\e2e-windows-amd64.exe --minikube-start-args="--driver=hyperv" --test.timeout=15m --timeout-multiplier=3 --test.v --test.run=TestFunctional --binary=./minikube-windows-amd64.exe 2>&1 | Tee-File -FilePath .\report\testout.txt -Encoding ASCII $END_TIME=(GET-DATE) echo $END_TIME $DURATION=(NEW-TIMESPAN -Start $START_TIME -End $END_TIME)