aboutsummaryrefslogtreecommitdiff
path: root/build-logic
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-11-25 01:22:01 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2022-11-25 01:22:01 +0530
commit06f8aea5957b5c8b99be3c9c17a2a6d105d83548 (patch)
tree9a022ba6f75cadd53844c5f84af2c15a7a872076 /build-logic
parentd25635500d2ba4d7760df46ab2432b6597c92600 (diff)
fix(build-logic): re-enable Test task state tracking
Diffstat (limited to 'build-logic')
-rw-r--r--build-logic/kotlin-plugins/src/main/kotlin/app/passwordstore/gradle/KotlinCommonPlugin.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/build-logic/kotlin-plugins/src/main/kotlin/app/passwordstore/gradle/KotlinCommonPlugin.kt b/build-logic/kotlin-plugins/src/main/kotlin/app/passwordstore/gradle/KotlinCommonPlugin.kt
index f37e427d..763b37d3 100644
--- a/build-logic/kotlin-plugins/src/main/kotlin/app/passwordstore/gradle/KotlinCommonPlugin.kt
+++ b/build-logic/kotlin-plugins/src/main/kotlin/app/passwordstore/gradle/KotlinCommonPlugin.kt
@@ -53,7 +53,6 @@ class KotlinCommonPlugin : Plugin<Project> {
withType<Test>().configureEach {
maxParallelForks = Runtime.getRuntime().availableProcessors() * 2
testLogging { events(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED) }
- doNotTrackState("We want tests to always run even if Gradle thinks otherwise")
}
}
}