fix(build-logic): re-enable Test task state tracking

This commit is contained in:
Harsh Shandilya 2022-11-25 01:22:01 +05:30
parent d25635500d
commit 06f8aea595
No known key found for this signature in database

View file

@ -53,7 +53,6 @@ class KotlinCommonPlugin : Plugin<Project> {
withType<Test>().configureEach { withType<Test>().configureEach {
maxParallelForks = Runtime.getRuntime().availableProcessors() * 2 maxParallelForks = Runtime.getRuntime().availableProcessors() * 2
testLogging { events(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED) } testLogging { events(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED) }
doNotTrackState("We want tests to always run even if Gradle thinks otherwise")
} }
} }
} }