Quantcast
Channel: Gradle Forums - Latest posts
Viewing all articles
Browse latest Browse all 19931

Parallel tests in subprojects

$
0
0

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
}

Viewing all articles
Browse latest Browse all 19931

Trending Articles