My sonarqube analysis job is skipped due to the fact that there are some unit test failures.
How can i perform the analysis anyway?
My sonarqube analysis job is skipped due to the fact that there are some unit test failures.
How can i perform the analysis anyway?
Hi,
You’ll need to configure your build pipeline to ignore test errors.
If I’m not mistaken, you’re using Azure Pipelines, so setting the continueOnError
property will suffice.
- task: VSTest@2
continueOnError: true
(... other configs)