diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 7da7bbb052d47ece5ff126da55ec92530a98e262..e50bd4093cd3b87e11b705a9240ee4fe9fae21b4 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -242,6 +242,7 @@ jobs: - name: The End Result functional_test_docker_windows shell: powershell run: | + $ErrorActionPreference = "SilentlyContinue" $numFail=(echo $Env:STAT | jq '.NumberOfFail') $failedTests=( echo $Env:STAT | jq '.FailedTests') echo "----------------${numFail} Failures----------------------------" @@ -329,6 +330,7 @@ jobs: - name: The End Result functional_test_hyperv_windows shell: powershell run: | + $ErrorActionPreference = "SilentlyContinue" $numFail=(echo $Env:STAT | jq '.NumberOfFail') $failedTests=( echo $Env:STAT | jq '.FailedTests') echo "----------------${numFail} Failures----------------------------" diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7a4f2e5385b27dffc05e69c77237b7d65053f342..cb380cffea26a2cf6032acfc0f2258147f45e941 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -240,6 +240,7 @@ jobs: - name: The End Result functional_test_docker_windows shell: powershell run: | + $ErrorActionPreference = "SilentlyContinue" $numFail=(echo $Env:STAT | jq '.NumberOfFail') $failedTests=( echo $Env:STAT | jq '.FailedTests') echo "----------------${numFail} Failures----------------------------" @@ -327,6 +328,7 @@ jobs: - name: The End Result functional_test_hyperv_windows shell: powershell run: | + $ErrorActionPreference = "SilentlyContinue" $numFail=(echo $Env:STAT | jq '.NumberOfFail') $failedTests=( echo $Env:STAT | jq '.FailedTests') echo "----------------${numFail} Failures----------------------------"