This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 992e1af3 authored by Michael Breu's avatar Michael Breu :speech_balloon:
Browse files

Fixing reporting

parent 8f4b8f0a
1 merge request!17Initial Merge to Prepare Release 1.0.0
......@@ -17,15 +17,15 @@ pipeline {
steps {
milestone 1
withSonarQubeEnv('SonarQube Production') {
sh "mvn -Dmaven.test.failure.ignore=true clean test integration-test jacoco:report"
sh "mvn -Dmaven.test.failure.ignore=true clean test integration-test jacoco:report jacoco:report-integration"
}
}
}
stage('Evaluate') {
steps {
milestone 2
junit(testResults: 'target/test-results/test/**/*.xml', healthScaleFactor: 100)
jacoco(execPattern: 'target/jacoco/test.exec', sourcePattern: 'src/main/java', sourceInclusionPattern: '**/*.java')
junit(testResults: 'target/test-results/test/**/*.xml,target/test-results/integrationTest/**/*.xml', healthScaleFactor: 100)
jacoco(execPattern: 'target/jacoco/test/test.exec,target/jacoco/integrationTest/integrationTest.exec', sourcePattern: 'src/main/java', sourceInclusionPattern: '**/*.java')
sh "npm test"
sh "mvn jacoco:report"
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment