File tree Expand file tree Collapse file tree 3 files changed +19
-28
lines changed Expand file tree Collapse file tree 3 files changed +19
-28
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,13 @@ dependencies {
55
55
api(project(" :dataframe-excel" ))
56
56
api(project(" :dataframe-openapi" ))
57
57
api(project(" :dataframe-jdbc" ))
58
+
59
+ kover(project(" :core" ))
60
+ kover(project(" :dataframe-arrow" ))
61
+ kover(project(" :dataframe-excel" ))
62
+ kover(project(" :dataframe-openapi" ))
63
+ kover(project(" :dataframe-jdbc" ))
64
+ kover(project(" :plugins:kotlin-dataframe" ))
58
65
}
59
66
60
67
enum class Version : Comparable <Version > {
@@ -170,25 +177,6 @@ allprojects {
170
177
}
171
178
}
172
179
173
- koverMerged {
174
- enable()
175
- filters {
176
- projects {
177
- excludes + = listOf (
178
- " :examples:idea-examples:youtube" ,
179
- " :examples:idea-examples:titanic" ,
180
- " :examples:idea-examples:movies" ,
181
- " :examples:idea-examples" ,
182
- " :examples" ,
183
- " :plugins" ,
184
- " :plugins:dataframe-gradle-plugin" ,
185
- " :plugins:symbol-processor" ,
186
- " :plugins:dataframe-gradle-plugin" ,
187
- )
188
- }
189
- }
190
- }
191
-
192
180
group = " org.jetbrains.kotlinx"
193
181
194
182
fun detectVersion (): String {
Original file line number Diff line number Diff line change @@ -374,11 +374,17 @@ tasks.withType<KotlinCompile> {
374
374
375
375
tasks.test {
376
376
maxHeapSize = " 2048m"
377
- extensions.configure(kotlinx.kover.api.KoverTaskExtension ::class ) {
378
- excludes = listOf (
379
- " org.jetbrains.kotlinx.dataframe.jupyter.*" ,
380
- " org.jetbrains.kotlinx.dataframe.jupyter.SampleNotebooksTests" ,
381
- )
377
+ kover{
378
+ reports{
379
+ total{
380
+ filters{
381
+ excludes {
382
+ classes(" org.jetbrains.kotlinx.dataframe.jupyter.*" )
383
+ classes(" org.jetbrains.kotlinx.dataframe.jupyter.SampleNotebooksTests" )
384
+ }
385
+ }
386
+ }
387
+ }
382
388
}
383
389
}
384
390
Original file line number Diff line number Diff line change @@ -16,10 +16,7 @@ libsPublisher = "1.9.23-dev-45"
16
16
dataframe = " 0.13.1"
17
17
korro = " 0.1.6"
18
18
19
- # TODO Requires more work to be updated to 0.7.0+
20
- # https://github.com/Kotlin/dataframe/issues/594
21
- kover = " 0.6.1"
22
-
19
+ kover = " 0.8.3"
23
20
commonsCsv = " 1.11.0"
24
21
commonsCompress = " 1.27.1"
25
22
commonsIo = " 2.16.1"
You can’t perform that action at this time.
0 commit comments