Skip to content

Instantly share code, notes, and snippets.

@svierk
Created May 27, 2022 23:32
Show Gist options
  • Select an option

  • Save svierk/1bc1f0db4cefdb352d8519a6128ad864 to your computer and use it in GitHub Desktop.

Select an option

Save svierk/1bc1f0db4cefdb352d8519a6128ad864 to your computer and use it in GitHub Desktop.
Azure Pipeline Task to publish JUnit Test Results
- 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