az-400-devops-engineer-expert video for note: This question is part of a series of questions that present the same scenario. Each question in the series
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. You need to use an Azure Pipelines pipeline to test an app. The solution meet the following requirements: The pipeline must fail if any tests fail. The test results must be published to the pipeline. The test for every pipeline run must be triggered unless the pipeline is cancelled. Solution : You include the following elements in the YAML definition of the pipeline. - task: PublishTestResults@2 displayName: 'Publish Unit Test Results' condition: always() inputs: testResultsFormat: 'JUnit' testResultsFiles: '**/junit.xml' failTaskOnMissingResultsFile: true testRunTitle: 'App Test' Does this meet the goal?