Browse Source

Fix the wrong coverage report

It wasn't taking into account any test result from the debug runs or screenshot tests

Co-authored-by: Jorge Martin Espinosa <jorgem@element.io>
pull/1782/head
Benoit Marty 8 months ago committed by Benoit Marty
parent
commit
b4481dc2a8
  1. 3
      app/build.gradle.kts

3
app/build.gradle.kts

@ -295,7 +295,8 @@ koverReport { @@ -295,7 +295,8 @@ koverReport {
}
defaults {
// add reports of 'release' Android build variant to default reports
// add reports of both 'debug' and 'release' Android build variants to default reports
mergeWith("debug")
mergeWith("release")
verify {

Loading…
Cancel
Save