1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Enable LONG on kube-arangodb-long test

This commit is contained in:
Ewout Prangsma 2018-03-29 08:46:49 +02:00
parent b171a93a5d
commit f3db65e75f
No known key found for this signature in database
GPG key ID: 4DBAD380D93D0698

View file

@ -26,6 +26,11 @@ def fetchParamsFromGitLog() {
myParams[entry.key] = entry.value;
}
// Is this a LONG test?
if ("${env.JOB_NAME}" == "kube-arangodb-long") {
myParams["LONG"] = true;
}
// Fetch params configured in git commit messages
// Syntax: [ci OPT=value]
// Example: [ci TESTOPTIONS="-test.run ^TestSimpleSingle$"]