File tree 2 files changed +6
-5
lines changed
reactive/kotlinx-coroutines-reactor
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,8 @@ val expectedCoverage = mutableMapOf(
13
13
" kotlinx-coroutines-swing" to 70 , // awaitFrame is not tested
14
14
" kotlinx-coroutines-javafx" to 39 , // JavaFx is not tested on TC because its graphic subsystem cannot be initialized in headless mode
15
15
16
- // Re-evaluate this along with Kover update where deprecated with error+ functions are not considered as uncovered: IDEA-287459
17
- " kotlinx-coroutines-reactor" to 65 ,
18
- " kotlinx-coroutines-rx2" to 83
19
- )
16
+ // Reactor has lower coverage in general due to various fatal error handling features
17
+ " kotlinx-coroutines-reactor" to 80 )
20
18
21
19
extensions.configure<KoverExtension > {
22
20
disabledProjects = notCovered
@@ -28,6 +26,8 @@ extensions.configure<KoverExtension> {
28
26
* ./gradlew :p:koverReport -Pkover.enabled=true -- generates report
29
27
*/
30
28
isDisabled = ! (properties[" kover.enabled" ]?.toString()?.toBoolean() ? : false )
29
+ // TODO remove when updating Kover to version 0.5.x
30
+ intellijEngineVersion.set(" 1.0.657" )
31
31
}
32
32
33
33
subprojects {
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ externalDocumentationLink(
29
29
)
30
30
31
31
val commonKoverExcludes = listOf (
32
- " kotlinx.coroutines.reactor.FlowKt" // Deprecated
32
+ " kotlinx.coroutines.reactor.FlowKt" , // Deprecated
33
+ " kotlinx.coroutines.reactor.ConvertKt\$ asFlux$1" // Deprecated
33
34
)
34
35
35
36
tasks.koverHtmlReport {
You can’t perform that action at this time.
0 commit comments