From 4e872bfa4a4db0b4c94139b729ef0639bfdfcd6e Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 10 Oct 2022 00:54:48 +0530 Subject: [PATCH] fix(gradle): re-enable `Test` state tracking --- .../main/kotlin/dev/msfjarvis/aps/gradle/KotlinCommonPlugin.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/build-logic/kotlin-plugins/src/main/kotlin/dev/msfjarvis/aps/gradle/KotlinCommonPlugin.kt b/build-logic/kotlin-plugins/src/main/kotlin/dev/msfjarvis/aps/gradle/KotlinCommonPlugin.kt index 6630d1bb..d326c682 100644 --- a/build-logic/kotlin-plugins/src/main/kotlin/dev/msfjarvis/aps/gradle/KotlinCommonPlugin.kt +++ b/build-logic/kotlin-plugins/src/main/kotlin/dev/msfjarvis/aps/gradle/KotlinCommonPlugin.kt @@ -35,7 +35,6 @@ class KotlinCommonPlugin : Plugin { withType().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") } } }