Add tests

This commit is contained in:
Telesphoreo 2022-04-14 20:32:26 -05:00
parent 5be5c364cd
commit 195650a11b
1 changed files with 9 additions and 0 deletions

9
Jenkinsfile vendored
View File

@ -18,11 +18,20 @@ pipeline {
}
}
}
stage('test') {
steps {
withGradle {
sh './gradlew test --no-daemon'
}
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
cleanWs()
junit 'Scissors-Server/build/test-results/test/*.xml'
junit 'Scissors-API/build/test-results/test/*.xml'
}
}
}