Forum Discussion
DFrolov
May 14, 2025Copper Contributor
Setting up Code Coverage data in Azure DevOps Pipeline, C# .NET 9
Hello everyone, I would like some assistance with my Azure DevOps pipeline. I am trying to set up Tasks in my Azure DevOps pipeline to collect Code Coverage results, after running UTs using the VsTe...
Kidd_Ip
May 16, 2025MVP
How about Coverage File?
Get-ChildItem -Path "$(System.DefaultWorkingDirectory)" -Recurse | Where-Object { $_.Name -match "coverage.cobertura.xml" }
DFrolov
May 30, 2025Copper Contributor
When I added this, it did not find anything - could it be that the VSTest task does not store the results properly?