Skip to content

Commit

Permalink
fix: disable test coverage reports for projects without tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abubkr-hago committed Aug 24, 2024
1 parent 09debc6 commit 309e0fb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion coroutines/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {

buildTypes {
debug {
testCoverageEnabled = true
testCoverageEnabled = false
buildConfigField("String","PARSE_VERSION","\"${version}\"")
}
release {
Expand Down
2 changes: 1 addition & 1 deletion fcm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {

buildTypes {
debug {
testCoverageEnabled = true
testCoverageEnabled = false
buildConfigField("String","PARSE_VERSION","\"${version}\"")
}
release {
Expand Down
2 changes: 1 addition & 1 deletion google/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {

buildTypes {
debug {
testCoverageEnabled = true
testCoverageEnabled = false
buildConfigField("String","PARSE_VERSION","\"${version}\"")
}
release {
Expand Down
2 changes: 1 addition & 1 deletion ktx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {

buildTypes {
debug {
testCoverageEnabled = true
testCoverageEnabled = false
buildConfigField("String","PARSE_VERSION","\"${version}\"")
}
release {
Expand Down
2 changes: 1 addition & 1 deletion rxjava/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {

buildTypes {
debug {
testCoverageEnabled = true
testCoverageEnabled = false
buildConfigField("String","PARSE_VERSION","\"${version}\"")
}
release {
Expand Down

0 comments on commit 309e0fb

Please sign in to comment.