I'm running the task below in Azure Pipelines and I needed to access the percentage of tests passing and failing as a result of running this task in another task.
Is this possible to be done? Can I access this result through a variable?
- task: DotNetCoreCLI@2
displayName: Execute Tests
inputs:
command: 'test'
projects: '**\BaseProject.dll'
workingDirectory: '$(System.DefaultWorkingDirectory)'
Please can someone help me? Thanks.