We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6ff728 commit 7f65555Copy full SHA for 7f65555
build/ci/job-template.yml
@@ -154,7 +154,12 @@ jobs:
154
inputs:
155
testRunner: 'xUnit'
156
searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults'
157
- testResultsFiles: '**/*.xml'
+ # Upload all test results except performance test project. On CI by default performance tests
158
+ # will not run and test result files will still be generate without details. Avoid uploading
159
+ # performance test result to avoid warnings on publish test result stage.
160
+ testResultsFiles: |
161
+ **/*.xml
162
+ !**/*PerformanceTests*.xml
163
testRunTitle: Machinelearning_Tests_${{ parameters.name }}_$(_configuration)_$(Build.BuildNumber)
164
configuration: $(_configuration)
165
mergeTestResults: true
0 commit comments