Exclude Node classes from code coverage metrics.
This commit is contained in:
parent
4b8c03fc31
commit
173f768301
1 changed files with 7 additions and 2 deletions
|
|
@ -171,12 +171,17 @@ koverMerged {
|
||||||
"anvil.hint.merge.*",
|
"anvil.hint.merge.*",
|
||||||
"anvil.module.*",
|
"anvil.module.*",
|
||||||
"com.airbnb.android.showkase*",
|
"com.airbnb.android.showkase*",
|
||||||
"*_Factory*",
|
"*_Factory",
|
||||||
"*_Module*",
|
"*_Factory$*",
|
||||||
|
"*_Module",
|
||||||
|
"*_Module$*",
|
||||||
"*ComposableSingletons$*",
|
"*ComposableSingletons$*",
|
||||||
"*_AssistedFactory_Impl*",
|
"*_AssistedFactory_Impl*",
|
||||||
"*BuildConfig",
|
"*BuildConfig",
|
||||||
// Other
|
// Other
|
||||||
|
// We do not cover Nodes (normally covered by maestro, but code coverage is not computed with maestro)
|
||||||
|
"*Node",
|
||||||
|
"*Node$*",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue