-
In Pester 4 you can publish an outputfile in Azure DevOps on the test pane of your pipeline run. Is there a similar way to achieve that in Pester 5? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
How do you do that right now with Pester4? Asking to give you similar solution. In Pester 5 there is configuration object where you can enable output in NUnit and JUnit format. You would then use it with
Or maybe just using -CI switch would be enough for you. That enables the output to testResults.xml and exit on failure: Lines 693 to 695 in 8baf734 |
Beta Was this translation helpful? Give feedback.
How do you do that right now with Pester4? Asking to give you similar solution.
In Pester 5 there is configuration object where you can enable output in NUnit and JUnit format. You would then use it with
Invoke-Pester -Configuration $c