Fix Jenkinsfile syntax

This commit is contained in:
James Allen 2017-11-23 16:46:49 +00:00
parent d9d7c96958
commit 7efef12981

View file

@ -112,13 +112,13 @@ pipeline {
stage('Unit Tests') {
steps {
sh 'make install'
sh "make test_unit MOCHA_ARGS="--reporter=tap"'
sh 'make test_unit MOCHA_ARGS="--reporter=tap"'
}
}
stage('Acceptance Tests') {
steps {
sh "make test_acceptance MOCHA_ARGS="--reporter=tap"'
sh 'make test_acceptance MOCHA_ARGS="--reporter=tap"'
}
}