From 70f31ae14ee7646e76bc756a4fd877bbe736fc06 Mon Sep 17 00:00:00 2001 From: seraphima Date: Mon, 15 Jan 2024 18:18:59 +0100 Subject: [PATCH] vs test --- .pipelines/ci/templates/run-ui-tests-ci.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.pipelines/ci/templates/run-ui-tests-ci.yml b/.pipelines/ci/templates/run-ui-tests-ci.yml index 95d04758ff..05f6d20c91 100644 --- a/.pipelines/ci/templates/run-ui-tests-ci.yml +++ b/.pipelines/ci/templates/run-ui-tests-ci.yml @@ -6,11 +6,21 @@ jobs: - job: UITest displayName: UI Test ${{ parameters.platform }} ${{ parameters.configuration }} pool: + demands: ImageOverride -equals SHINE-VS17-Latest ${{ if eq(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}: - name: SHINE-OSS-Testing-x64 + name: SHINE-OSS-L ${{ if ne(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}: - name: SHINE-INT-Testing-x64 + name: SHINE-INT-L steps: - checkout: none - - bash: echo "##[debug]Debug text" + - task: VSTest@2 + displayName: 'UI Tests' + condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. + inputs: + platform: '$(BuildPlatform)' + configuration: '$(BuildConfiguration)' + testSelector: 'testAssemblies' + testAssemblyVer2: | + **\UITests-FancyZones.dll + **\UITests-FancyZonesEditor.dll