Added more tests.

This commit is contained in:
Erik C. Thauvin 2021-11-17 08:05:45 -08:00
parent e462a70147
commit 7c270ed872
3 changed files with 29 additions and 8 deletions

View file

@ -158,6 +158,7 @@ sonarqube {
property('sonar.organization', 'ethauvin-github')
property('sonar.projectKey', 'ethauvin_mobibot')
property('sonar.host.url', 'https://sonarcloud.io')
property('sonar.coverage.jacoco.xmlReportPaths', "${project.buildDir}/reports/kover/report.xml")
}
}
@ -174,7 +175,7 @@ jacocoTestReport {
}
tasks.sonarqube {
dependsOn 'jacocoTestReport'
dependsOn 'koverReport'
}
task copyToDeploy(type: Copy) {