We found that we can disable parallel execution of tests on specific projects by setting maxParallelForks. It is project specific, in fact task specific, and won’t affect others:
test {
maxParallelForks = 1; // Will not do parallel execution
}
We found that we can disable parallel execution of tests on specific projects by setting maxParallelForks. It is project specific, in fact task specific, and won’t affect others:
test {
maxParallelForks = 1; // Will not do parallel execution
}