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') {
try {
sh 'ant test'
} finally {
step([$class: 'JUnitResultArchiver', testResults: 'build/reports/*.xml'])
}
//try {
// sh 'ant test'
//} finally {
// step([$class: 'JUnitResultArchiver', testResults: 'build/reports/*.xml'])
//}
}