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:
- sudo apt-get install -y protobuf-compiler
script:
- gradle -q clean check -x :wallettemplate:check
- gradle clean check -x :wallettemplate:check
notifications:
irc:

View file

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