@@ -124,7 +124,7 @@ jobs:
124124 displayName : ' Run tests'
125125 inputs :
126126 mavenPomFile : pom.xml
127- options : ${{ parameters.TestOptions }} -pl $(PLSkipOptions)$(ProjectList) $(AdditionalOptions)
127+ options : ${{ parameters.TestOptions }} $(TestOptions) -pl $(PLSkipOptions)$(ProjectList) $(AdditionalOptions)
128128 mavenOptions : ' $(MemoryOptions) $(LoggingOptions)'
129129 javaHomeOption : ' JDKVersion'
130130 jdkVersionOption : $(JavaTestVersion)
@@ -174,7 +174,7 @@ jobs:
174174 mavenPomFile : ClientFromSourcePom.xml
175175 # For the From Source runs we don't want the -am switch as we don't care about running tests for our dependencies
176176 # but we do want the -amd switch because we want to run tests on things that depend on us.
177- options : ${{ parameters.TestOptions }} -pl $(PLSkipOptions)$(ProjectList) -amd -T 1C
177+ options : ${{ parameters.TestOptions }} $(TestOptions) -pl $(PLSkipOptions)$(ProjectList) -amd -T 1C
178178 mavenOptions : ' $(MemoryOptions) $(LoggingOptions)'
179179 javaHomeOption : ' JDKVersion'
180180 jdkVersionOption : $(JavaTestVersion)
@@ -193,7 +193,7 @@ jobs:
193193 condition : and(always(), or(ne(variables['TestFromSource'],'true'), eq(variables['ShouldRunSourceTests'],'true')))
194194 inputs :
195195 mergeTestResults : true
196- testRunTitle : $(RunTitle )
196+ testRunTitle : $(Agent.JobName )
197197
198198 # Azure DevOps only seems to respect the last code coverage result published, so only do this for Windows + Java LTS.
199199 # Code coverage reporting is setup only for Track 2 modules.
0 commit comments