diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-11-25 01:22:01 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-11-25 01:22:01 +0530 |
commit | 06f8aea5957b5c8b99be3c9c17a2a6d105d83548 (patch) | |
tree | 9a022ba6f75cadd53844c5f84af2c15a7a872076 /build-logic | |
parent | d25635500d2ba4d7760df46ab2432b6597c92600 (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.kt | 1 |
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") } } } |