Publishes and generates reports by configuration of predefined and/or custom report generators.
These reports will be generated for all configured ecu.test packages or projects in this job.
publishGenerators(String toolName, List<ReportGeneratorConfig> generators, List<ReportGeneratorConfig> customGenerators) : void
publishGenerators(ETInstallation installation, List<ReportGeneratorConfig> generators, List<ReportGeneratorConfig> customGenerators, boolean allowMissing, boolean runOnFailed, boolean archiving, boolean keepAll) : void
ETInstance.publishGenerators(List<ReportGeneratorConfig> generators, List<ReportGeneratorConfig> customGenerators, boolean allowMissing, boolean runOnFailed, boolean archiving, boolean keepAll) : void
ETInstance.publishGenerators(Map<String, Object> settings) : void
publishGenerators toolName: 'ecu.test', generators: [[name: 'JSON']]
def instance = ET.installation('ecu.test') publishGenerators installation: instance.installation, generators: [[name: 'JSON']]
def instance = ET.newInstallation('ecu.test', 'C:\\Program Files\\ECU-TEST 8.0') instance.publishGenerators([[name: 'JSON']], [[name: 'Custom-JSON']])
def instance = ET.newInstallation toolName: 'ecu.test', installPath: C:\\Program Files\\ECU-TEST 8.0' instance.publishGenerators generators: [[name: 'JSON']], customGenerators: [[name: 'Custom-JSON']], allowMissing: true, runOnFailed: true, archiving: true, keepAll: true