Skip to content

Commit 7ef6db4

Browse files
authored
Add missing ci test variables (Azure#20098)
1 parent 5a8aee1 commit 7ef6db4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eng/pipelines/templates/jobs/ci.tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)