Compare commits

...

3 Commits

Author SHA1 Message Date
Dustin Howett
f472bf64be Merge remote-tracking branch 'origin/main' into dev/duhowett/build-5 2024-12-03 17:52:32 -06:00
Dustin Howett
460b76a2e1 hurr durr 2024-09-27 18:22:38 -05:00
Dustin Howett
c54b6e8801 Run native tests on arm64! 2024-09-27 18:21:02 -05:00

View File

@@ -59,6 +59,30 @@ jobs:
inputs:
displaySettings: 'optimal'
# The arm64 builder cannot run arm64 tests, so we have to run them here
- ${{ if eq(parameters.platform, 'arm64') }}:
- task: VSTest@3
displayName: Run Tests
inputs:
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'
testSelector: 'testAssemblies'
searchFolder: '$(Pipeline.Workspace)\build-${{ parameters.platform }}-${{ parameters.configuration }}${{ parameters.inputArtifactStem }}'
vsTestVersion: 'toolsInstaller'
rerunFailedTests: true
# Look at all those naming schemes!
testAssemblyVer2: |
**\UnitTests-*.dll
**\UnitTest-*.dll
**\*UnitTests.dll
**\*.UnitTest.dll
**\*.Tests.dll
**\*.Test.dll
**\KeyboardManager*Test.dll
!**\UITests-*.dll
!**\obj\**
!**\ref\**
- task: VSTest@3
displayName: Run UI Tests
inputs: