From 3fbe8b61baf23c6c4287d8991502d1780af487e5 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 24 Oct 2023 13:48:45 +0200 Subject: [PATCH] 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. --- build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index f08c023b1d..970dfe8465 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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.*", ) ) }