Make Gradle fail fast when a unit test doesn't succeed.

This commit is contained in:
Mike Hearn 2018-05-19 13:59:28 +02:00
parent 94c7113305
commit 0241c83809

View File

@ -194,6 +194,8 @@ allprojects {
}
tasks.withType(Test) {
failFast = true
// Prevent the project from creating temporary files outside of the build directory.
systemProperty 'java.io.tmpdir', buildDir.absolutePath