Skip to content
Snippets Groups Projects
Commit a393e2e2 authored by dgelessus's avatar dgelessus
Browse files

Disable parallel tests again for now because of problems with JS tests

parent 7ed52de6
Branches
No related tags found
No related merge requests found
Pipeline #149324 failed
......@@ -41,9 +41,11 @@ application {
}
test {
// Enable executing tests in parallel, as recommended here:
// We could enable executing tests in parallel, as recommended here:
// https://docs.gradle.org/8.12/userguide/performance.html#execute_tests_in_parallel
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
// But this currently doesn't work with the JavaScript tests,
// because multiple tests copy files to the same location and conflict with each other.
//maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
testLogging {
exceptionFormat = 'full'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment