We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8de6e9 commit 0b81109Copy full SHA for 0b81109
projects/build.gradle.kts
@@ -4,17 +4,6 @@ plugins {
4
alias(libs.plugins.kover)
5
}
6
7
-kover {
8
- reports {
9
- filters {
10
- excludes {
11
- androidGeneratedClasses()
12
- packages("**generated**")
13
- classes("**generated**")
14
- }
15
16
17
-}
18
subprojects {
19
apply {
20
plugin(rootProject.libs.plugins.kover.pluginId)
@@ -29,8 +18,19 @@ subprojects {
29
30
31
21
+ kover {
22
+ reports {
23
+ filters {
24
+ excludes {
25
+ packages("com.trendyol.kediatr.testing")
26
+ }
27
28
+
32
dependencies {
33
implementation(rootProject.libs.kotlinx.coroutines.core)
+ kover(this@subprojects)
34
35
36
0 commit comments