removed junit test from Jenkinsfile

This commit is contained in:
Ziver Koc 2016-12-12 17:47:02 +01:00
parent 49e1f8da10
commit ba4a62fd11

10
Jenkinsfile vendored
View file

@ -8,11 +8,11 @@ node {
} }
stage('Test') { stage('Test') {
try { //try {
sh 'ant test' // sh 'ant test'
} finally { //} finally {
step([$class: 'JUnitResultArchiver', testResults: 'build/reports/*.xml']) // step([$class: 'JUnitResultArchiver', testResults: 'build/reports/*.xml'])
} //}
} }