From 195650a11b65fbeba1b51de6bc149674c9ef43e1 Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Thu, 14 Apr 2022 20:32:26 -0500 Subject: [PATCH] Add tests --- Jenkinsfile | 9 +++++++++ 1 file changed, 9 insertions(+) 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