diff --git a/Jenkinsfile b/Jenkinsfile index a2e5036..80a0f84 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } } } \ No newline at end of file