Skip to content

Commit

Permalink
Update jacoco reports path in sonar config
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertoMoreta committed Oct 31, 2023
1 parent b1d1696 commit 442d9de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,13 @@ sonar {
property("sonar.sourceEncoding", "UTF-8")
property(
"sonar.kotlin.ktlint.reportPaths",
"build/reports/ktlint/ktlintAndroidTestSourceSetCheck/ktlintAndroidTestSourceSetCheck.xml," +
"build/reports/ktlint/ktlintAndroidTestSourceSetCheck/ktlintAndroidTestSourceSetCheck.xml," +
"build/reports/ktlint/ktlintKotlinScriptCheck/ktlintKotlinScriptCheck.xml," +
"build/reports/ktlint/ktlintMainSourceSetCheck/ktlintMainSourceSetCheck.xml," +
"build/reports/ktlint/ktlintTestSourceSetCheck/ktlintTestSourceSetCheck.xml",
)
property("sonar.java.coveragePlugin", "jacoco")
property("sonar.junit.reportPaths", "**/test-results/**/*.xml")
property("sonar.coverage.jacoco.xmlReportPaths", "build/reports/coverage/androidTest/debug/connected/report.xml")
property("sonar.coverage.jacoco.xmlReportPaths", "build/reports/jacoco/jacocoTestReport/jacocoTestReport.xml")
}
}

0 comments on commit 442d9de

Please sign in to comment.