build.gradle: Print failed tests a bit more detailed.

This commit is contained in:
Oscar Guindzberg
2019-02-15 11:54:28 -03:00
committed by Andreas Schildbach
parent 4fb0e6ed95
commit 66d54c11b1
2 changed files with 5 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ jdk:
install: install:
- sudo apt-get install -y protobuf-compiler - sudo apt-get install -y protobuf-compiler
script: script:
- gradle -q clean check -x :wallettemplate:check - gradle clean check -x :wallettemplate:check
notifications: notifications:
irc: irc:

View File

@@ -34,6 +34,10 @@ protobuf {
test { test {
exclude 'org/bitcoinj/net/NetworkAbstractionTests*' exclude 'org/bitcoinj/net/NetworkAbstractionTests*'
testLogging {
events "failed"
exceptionFormat "full"
}
} }
task javadocJar(type: Jar, dependsOn: javadoc) { task javadocJar(type: Jar, dependsOn: javadoc) {