From 3200f20897e9876c56e9b841c509698238ca328a Mon Sep 17 00:00:00 2001 From: abose Date: Thu, 11 Jan 2024 21:29:43 +0530 Subject: [PATCH] fix: activate live preview desktop integ window fail status fix in pipeline --- .github/workflows/desktop-windows-test-pull.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/desktop-windows-test-pull.yml b/.github/workflows/desktop-windows-test-pull.yml index 1da5ff8af..3bba46317 100644 --- a/.github/workflows/desktop-windows-test-pull.yml +++ b/.github/workflows/desktop-windows-test-pull.yml @@ -106,7 +106,7 @@ jobs: shell: cmd - name: Fail on test runs failed in windows - if: steps.windowsRunUnit.outcome == 'failure' || steps.windowsRunIntegration.outcome == 'failure' || steps.windowsRunMainview.outcome == 'failure' || steps.windowsRunLegacyInteg.outcome == 'failure' + if: steps.windowsRunUnit.outcome == 'failure' || steps.windowsRunIntegration.outcome == 'failure' || steps.windowsRunMainview.outcome == 'failure' || steps.windowsRunLivepreview.outcome == 'failure' || steps.windowsRunLegacyInteg.outcome == 'failure' run: | echo "Windows tests failed, marking step as failed" exit 1