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 07406ab commit f25d9a6Copy full SHA for f25d9a6
build/azure-pipelines.yml
@@ -211,6 +211,19 @@ steps:
211
minimumExpectedTests: 0
212
failOnMinTestsNotRunFail: false
213
failIfCoverageEmpty: false
214
+ resultsFolder: '$(Agent.TempDirectory)\TestResults'
215
+
216
+- task: PublishTestResults@2
217
+ inputs:
218
+ testResultsFormat: 'VSTest'
219
+ testResultsFiles: '**/*.TRX'
220
+ searchFolder: '$(Agent.TempDirectory)\TestResults'
221
222
+- task: PublishCodeCoverageResults@2
223
224
+ summaryFileLocation: '$(Agent.TempDirectory)\TestResults\**\coverage.cobertura.xml'
225
+ pathToSources: '$(System.DefaultWorkingDirectory)'
226
+ failIfCoverageEmpty: false
227
228
- task: PowerShell@2
229
displayName: 'Detect packages'
0 commit comments