From 6a2fae87a1aad48f90f0dad931bc2bfd53943563 Mon Sep 17 00:00:00 2001 From: seraphima Date: Fri, 26 Jan 2024 12:23:13 +0100 Subject: [PATCH] are other tests running? --- .pipelines/ci/templates/run-ui-tests-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.pipelines/ci/templates/run-ui-tests-ci.yml b/.pipelines/ci/templates/run-ui-tests-ci.yml index 06f3b6d9cf..c09f3b5ebf 100644 --- a/.pipelines/ci/templates/run-ui-tests-ci.yml +++ b/.pipelines/ci/templates/run-ui-tests-ci.yml @@ -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