From 3ba5edb697ce4c56090a7e6ee3bf7b1e3d076832 Mon Sep 17 00:00:00 2001 From: seraphima Date: Tue, 6 Feb 2024 10:58:01 +0100 Subject: [PATCH] changed args and condition --- .pipelines/ci/templates/run-ui-tests-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.pipelines/ci/templates/run-ui-tests-ci.yml b/.pipelines/ci/templates/run-ui-tests-ci.yml index 0f9dc9022b..b97ac7fc6d 100644 --- a/.pipelines/ci/templates/run-ui-tests-ci.yml +++ b/.pipelines/ci/templates/run-ui-tests-ci.yml @@ -40,11 +40,10 @@ jobs: displayName: 'Start - WinAppDriver' inputs: WADArguments: 127.0.0.1 4723/wd/hub - AgentResolution: 1080p - task: VSTest@2 displayName: 'UI Tests' - condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. + condition: and(succeeded(), ne(variables['BuildPlatform'],'arm64')) # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)'