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

Fix test stage

This commit is contained in:
Ewout Prangsma 2018-02-20 11:29:32 +01:00
parent 8a0765f0bc
commit b9fc6db898
No known key found for this signature in database
GPG key ID: 4DBAD380D93D0698

View file

@ -36,15 +36,13 @@ pipeline {
} }
} }
stage('Test') { stage('Test') {
stage('Test with Direct') { steps {
steps { timestamps {
timestamps { lock("kubernetes-operator-tests") {
lock("kubernetes-operator-tests") { withEnv([
withEnv([ 'TESTNAMESPACE=${params.TESTNAMESPACE}',
'TESTNAMESPACE=${params.TESTNAMESPACE}', ]) {
]) { sh "make run-tests"
sh "make run-tests"
}
} }
} }
} }