are other tests running?

This commit is contained in:
seraphima
2024-01-26 12:23:13 +01:00
parent cefe6ac235
commit 6a2fae87a1

View File

@@ -36,6 +36,18 @@ jobs:
- task: VisualStudioTestPlatformInstaller@1
displayName: Ensure VSTest Platform
- task: VSTest@2
displayName: 'MS Tests'
condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests.
inputs:
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'
testSelector: 'testAssemblies'
testAssemblyVer2: |
**\UnitTests-FancyZonesEditor.dll
!**\obj\**
!**\ref\**
- task: VSTest@2
displayName: 'UI Tests'
condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests.
@@ -46,6 +58,7 @@ jobs:
searchFolder: '$(Build.ArtifactStagingDirectory)'
vstestLocationMethod: 'location'
vstestLocation: 'D:\a\_work\_temp\VsTest'
uiTests: true
testAssemblyVer2: |
**\UITests-FancyZones.dll
**\UITests-FancyZonesEditor.dll