Skip to content

Commit

Permalink
Update ci-run-integration-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvand authored Feb 22, 2024
1 parent 83ec4ea commit 8242cde
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions azure-pipelines/ci-run-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ jobs:
strategy:
maxParallel: 4
matrix:
OnSharePoint2013:
deployThisSharePointVersion: variables['Deployment.ProvisionSharePoint2013']
sharePointVersion: 2013
OnSharePoint2016:
deployThisSharePointVersion: variables['Deployment.ProvisionSharePoint2016']
sharePointVersion: 2016
Expand All @@ -26,7 +23,7 @@ jobs:
#condition: eq(variables['deployThisSharePointVersion'], 'yes') # Not working: variables['deployThisSharePointVersion'] is evaluated to Null
timeoutInMinutes: 30
pool:
name: $(System.TeamProject)-Tests-$(sharePointVersion)
name: $(Tests.ProjectName)-Tests-$(sharePointVersion)
steps:
- checkout: none #skip checking out the default repository resource
- task: VisualStudioTestPlatformInstaller@1
Expand All @@ -35,14 +32,14 @@ jobs:
- task: VSTest@3
displayName: 'Run Visual Studio tests'
inputs:
searchFolder: '$(RootLocalPath)/$(TestsPathName)/$(System.TeamProject)-unit-tests/release'
searchFolder: '$(RootLocalPath)/$(TestsPathName)/$(Tests.ProjectName)-unit-tests/release'
vsTestVersion: toolsInstaller
runSettingsFile: '$(RootLocalPath)/$(TestsPathName)/DTLServer.runsettings'
overrideTestrunParameters: '$(Tests.OverrideTestrunParameters)'
codeCoverageEnabled: $(Tests.CodeCoverageEnabled)
otherConsoleOptions: '/Platform:x64'
testRunTitle: '$(System.TeamProject)-Tests-SP$(sharePointVersion)'
testRunTitle: '$(Tests.ProjectName)-Tests-SP$(sharePointVersion)'
platform: '$(BuildPlatform)'
configuration: $(Tests.BuildConfiguration)
testAssemblyVer2: |
**\$(System.TeamProject)*test*.dll
**\$(Tests.ProjectName)*test*.dll

0 comments on commit 8242cde

Please sign in to comment.