...
By default, Data Collector does not process coverage data for the Change Based Testing (CBT) or Risky Code Changes (RCC) DTP Enterprise Pack artifact. This is to reduce the potential performance impact associated with the running the artifacts. If you want to use these artifacts, you must enable coverage data processing in the ReducedCoverageConfig.xml configuration file located in the DTP_HOME/grsconf/ config/ directory. This file enables you to specify the coverage data a list of coverage images that you want Data Collector to process.
Info | ||
---|---|---|
| ||
If your coverage report files exceed 1 GB and you send multiple reports per build, you may experience an extra five minutes per GB in Data Collector processing time. |
...
- Open the file and set the value of the
type
parameter in the<images>
element to eitheraccept
orreject
:
<images type="accept">
Setting the parameter toaccept
means that Data Collector will only only accept coverage data for the coverage images in the list. Setting the parameter toreject
means Data Collector will reject accept coverage data for all coverage images except for those in the list. Specify the coverage images to accept or reject by adding them in
<image>
elements within the<images>
element:Code Block <images type="accept"> <image>Example Coverage</image> <image>Test Coverage</image> </images>
- Save the file.
...