tests: set maxParallelForks = 1, maybe this fixes travis non-deterministic build

This commit is contained in:
Vincent Breitmoser 2014-07-11 19:19:49 +02:00
parent 65e75eed93
commit 74f510e62b

View file

@ -23,3 +23,9 @@ allprojects {
task wrapper(type: Wrapper) {
gradleVersion = '1.12'
}
subprojects {
tasks.withType(Test) {
maxParallelForks = 1
}
}