Created
May 27, 2022 23:32
-
-
Save svierk/1bc1f0db4cefdb352d8519a6128ad864 to your computer and use it in GitHub Desktop.
Azure Pipeline Task to publish JUnit Test Results
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - task: PublishTestResults@2 | |
| displayName: 'Publish Test Results' | |
| inputs: | |
| testResultsFormat: 'JUnit' | |
| testResultsFiles: '**/test-results-*.xml' | |
| failTaskOnFailedTests: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment