Skip to content

Commit 6865ba9

Browse files
committed
fix: remove kover
Motivation: * Random issue with missing `kover-agent.args` (not sure what's the exact cause, but invalidating the cache + removing `build/` helps) * We don’t get any real benefit from this at the moment (checking coverage is great, but we have too few tests for it to make sense to track or to require a certain % in new PRs; we can bring it back in the future) * The CI step was commented out anyway
1 parent ca0fef0 commit 6865ba9

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

.github/workflows/jetbrains-release.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -456,12 +456,6 @@ jobs:
456456
name: tests-result
457457
path: ${{ github.workspace }}/extensions/intellij/build/reports/tests
458458

459-
# Upload the Kover report to CodeCov
460-
# - name: Upload Code Coverage Report
461-
# uses: codecov/codecov-action@v4
462-
# with:
463-
# files: ${{ github.workspace }}/build/reports/kover/report.xml
464-
465459
# Run Qodana inspections and provide report
466460
inspectCode:
467461
if: false

extensions/intellij/build.gradle.kts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ plugins {
1515
id("org.jetbrains.intellij.platform") version "2.7.2"
1616
id("org.jetbrains.changelog") version "2.1.2"
1717
id("org.jetbrains.qodana") version "0.1.13"
18-
id("org.jetbrains.kotlinx.kover") version "0.7.3"
1918
id("io.sentry.jvm.gradle") version "5.8.0"
2019
}
2120

@@ -78,12 +77,6 @@ qodana {
7877
showReport = environment("QODANA_SHOW_REPORT").map { it.toBoolean() }.getOrElse(false)
7978
}
8079

81-
koverReport {
82-
defaults {
83-
xml { onCheck = true }
84-
}
85-
}
86-
8780
intellijPlatformTesting {
8881
runIde {
8982
register("runIdeForUiTests") {

0 commit comments

Comments
 (0)