Browse Source

Test coverage: Exclude `:libraries:matrix:impl` module, it contains only wrappers to access the Rust Matrix SDK api, and mappers. It is not really relevant to unit test that: there is no logic to test.

pull/1634/head
Benoit Marty 11 months ago committed by Benoit Marty
parent
commit
3fbe8b61ba
  1. 2
      build.gradle.kts

2
build.gradle.kts

@ -198,6 +198,8 @@ koverMerged { @@ -198,6 +198,8 @@ koverMerged {
// We do not cover Nodes (normally covered by maestro, but code coverage is not computed with maestro)
"*Node",
"*Node$*",
// Exclude `:libraries:matrix:impl` module, it contains only wrappers to access the Rust Matrix SDK api, so it is not really relevant to unit test it: there is no logic to test.
"io.element.android.libraries.matrix.impl.*",
)
)
}

Loading…
Cancel
Save