changed args and condition

This commit is contained in:
seraphima
2024-02-06 10:58:01 +01:00
parent 1adad0de2f
commit 3ba5edb697

View File

@@ -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)'