Skip to content

Commit

Permalink
fix jacoco exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
ndiritumichael committed Oct 2, 2024
1 parent a95ce20 commit 3be0589
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ private val coverageExclusions =
"**/Manifest*.*",
"**/*_Hilt*.class",
"**/Hilt_*.class",
"**/*Binding*.*",
"**/di/**", // Exclude DI folders
"**/*_Impl.java", // Exclude Room generated classes
"**/Generated*.class",
"**/*_Impl.class",
"**/Generated*.class", // Exclude Apollo generated classes
"**/*Database$*",
"**/*Database_*",
)

private fun String.capitalize() =
Expand Down

0 comments on commit 3be0589

Please sign in to comment.