We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb5a16 commit ae31ea5Copy full SHA for ae31ea5
gradle/special-tests.gradle
@@ -18,7 +18,14 @@ tasks.withType(Test).configureEach {
18
maxFailures = 10
19
}
20
21
-
+ // selfie https://selfie.dev/jvm/get-started#gradle
22
+ environment project.properties.subMap([
23
+ "selfie"
24
+ ]) // optional, see "Overwrite everything" below
25
+ inputs.files(fileTree("src/test") {
26
+ // optional, improves up-to-date checking
27
+ include "**/*.ss"
28
+ })
29
// https://docs.gradle.org/8.8/userguide/performance.html#execute_tests_in_parallel
30
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
31
0 commit comments