Select the baseline to be used for the code coverage computation of this quality gate. The following different baselines are supported:
Overall project - PROJECT
Coverage of the whole project. This is an absolute value that might not change much from build to build.
Overall project (difference to reference job) - PROJECT_DELTA
Difference between the project coverages of the current build and the reference build. Teams can use this delta value to ensure that the coverage will not decrease.
Modified code lines - MODIFIED_LINES
Coverage of the modified lines (e.g., within the modified lines of a pull or merge request) will focus on new or modified code only.
Modified code lines (difference to overall project) - MODIFIED_LINES_DELTA
Difference between the project coverage and the modified lines coverage of the current build. Teams can use this delta value to ensure that the coverage of pull requests is better than the whole project coverage.
Modified files - MODIFIED_FILES
Coverage of the modified files (e.g., within the files that have been touched in a pull or merge request) will focus on new or modified code only.
Modified files (difference to overall project) - MODIFIED_FILES_DELTA
Difference between the project coverage and the modified files coverage of the current build. Teams can use this delta value to ensure that the coverage of pull requests is better than the whole project coverage.