Veröffentlicht die Testergebnisse aller in diesem Job konfigurierten ECU-TEST-Packages bzw. -Projekte in ein vorkonfiguriertes Testmanagementsystem wie RQM oder ALM.
Verwendung in Pipelines
publishTMS(String toolName, String credentialsId, int timeout) : void
publishTMS(ETInstallation installation, String credentialsId, int timeout,
boolean allowMissing, boolean runOnFailed, boolean archiving, boolean keepAll) : void
ETInstance.publishTMS(String credentialsId, int timeout) : void
ETInstance.publishTMS(Map<String, Object> settings) : void
publishTMS('ECU-TEST')
def instance = ET.installation('ECU-TEST')
publishTMS installation: instance.installation, credentialsId: 'id', timeout: 120
def instance = ET.newInstallation('ECU-TEST', 'C:\\Program Files\\ECU-TEST 8.0')
instance.publishTMS('id')
def instance = ET.newInstallation toolName: 'ECU-TEST', installPath: C:\\Program Files\\ECU-TEST 8.0'
instance.publishTMS credentialsId: 'id', timeout: 120, allowMissing: true, runOnFailed: true, archiving: true, keepAll: true