Browse Source

Update wysiwyg to v2.32.0 (#2531)

* Update wysiwyg to v2.32.0

* Bump min global coverage value to 70

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jorge Martín <jorgem@element.io>
pull/2533/head
renovate[bot] 6 months ago committed by GitHub
parent
commit
f865f301d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      gradle/libs.versions.toml
  2. 4
      plugins/src/main/kotlin/extension/KoverExtension.kt

2
gradle/libs.versions.toml

@ -38,7 +38,7 @@ serialization_json = "1.6.3" @@ -38,7 +38,7 @@ serialization_json = "1.6.3"
showkase = "1.0.2"
appyx = "1.4.0"
sqldelight = "2.0.1"
wysiwyg = "2.31.0"
wysiwyg = "2.32.0"
telephoto = "0.8.0"
# DI

4
plugins/src/main/kotlin/extension/KoverExtension.kt

@ -109,11 +109,11 @@ fun Project.setupKover() { @@ -109,11 +109,11 @@ fun Project.setupKover() {
isEnabled = true
entity = kotlinx.kover.gradle.plugin.dsl.GroupingEntityType.APPLICATION
bound {
minValue = 65
minValue = 70
// Setting a max value, so that if coverage is bigger, it means that we have to change minValue.
// For instance if we have minValue = 20 and maxValue = 30, and current code coverage is now 31.32%, update
// minValue to 25 and maxValue to 35.
maxValue = 75
maxValue = 80
metric = kotlinx.kover.gradle.plugin.dsl.MetricType.INSTRUCTION
aggregation = kotlinx.kover.gradle.plugin.dsl.AggregationType.COVERED_PERCENTAGE
}

Loading…
Cancel
Save