Hello everyone,
I have been struggling with an issue for parsing test results to xunit for publishing. My goal is to display this in Jenkins UI for seeing all the passed tests. Below is my script
sh 'dotnet test --logger:trx path/to/my/project/project.csproj'
xunit testTimeMargin: '3000', thresholdMode: 1, thresholds: [], tools: [xUnitDotNet(deleteOutputFiles: true, failIfNotNew: true, pattern: '**/*.trx', skipNoTestFiles: false, stopProcessingIfError: false)]
Attached, is the output from the console. Can someone tell me what i am doing wrong?thanks