When using azure devops with following pipeline task:
- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: 'cobertura'
summaryFileLocation: $(System.DefaultWorkingDirectory)/coverage/cobertura-coverage.xml
displayName: 'publish coverage data'
This publishes the code coverage data as artifact, resulting in unneccessary downloads in the release pipelines of coverage data.
How can I either skip the download of specific artifacts in the release pipeline?
Or how can I tell pipelines, that I want to see the coverage data, but those are not artifacts to release?