diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d7cfdc642cc86f6460b46de5d0f52c81271733e2..e2c06c32552714c1c4d6b35c45e92a1e46c76db1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,4 +37,4 @@ test:linux: - mkdir cpp_build && cd cpp_build - cmake .. - make install & cd .. - - ./gradlew test --stacktrace + - ./gradlew test --info --stacktrace diff --git a/build.gradle b/build.gradle index 25a2f1ce2c7c122cb94fee1f805c945d6f4c0fee..8fd51fa970897e0067384e13316b1023cd97f4d5 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,5 @@ +import org.gradle.api.tasks.testing.logging.TestLogEvent + apply plugin: 'java' apply plugin: 'application' apply plugin: 'antlr' @@ -48,9 +50,7 @@ test { //maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1 testLogging { - exceptionFormat = 'full' - showStandardStreams = true - events 'failed', 'skipped', 'passed' + events += [TestLogEvent.PASSED] } }