1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/vars/gaugeExecuteTests.groovy

14 lines
525 B
Groovy
Raw Normal View History

import static com.sap.piper.Prerequisites.checkScript
import groovy.transform.Field
@Field String STEP_NAME = getClass().getName()
@Field String METADATA_FILE = 'metadata/gaugeExecuteTests.yaml'
2019-03-29 13:14:01 +02:00
void call(Map parameters = [:]) {
List credentials = [
[type: 'usernamePassword', id: 'seleniumHubCredentialsId', env: ['PIPER_SELENIUM_HUB_USER', 'PIPER_SELENIUM_HUB_PASSWORD']],
]
final script = checkScript(this, parameters) ?: this
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
}