Skip to content

Commit ae31ea5

Browse files
committed
Setup selfie.
1 parent 2fb5a16 commit ae31ea5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

gradle/special-tests.gradle

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,14 @@ tasks.withType(Test).configureEach {
1818
maxFailures = 10
1919
}
2020
}
21-
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+
})
2229
// https://docs.gradle.org/8.8/userguide/performance.html#execute_tests_in_parallel
2330
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
2431
}

0 commit comments

Comments
 (0)