fix(gradle): re-enable Test state tracking

This commit is contained in:
Harsh Shandilya 2022-10-10 00:54:48 +05:30
parent fdc9ae8968
commit 4e872bfa4a
No known key found for this signature in database

View file

@ -35,7 +35,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")
}
}
}