Skip to content
Snippets Groups Projects
Commit d6ba2454 authored by dgelessus's avatar dgelessus
Browse files

Run Gradle with --info on CI to reduce needed testLogging options

parent 4e26c221
No related branches found
No related tags found
No related merge requests found
...@@ -37,4 +37,4 @@ test:linux: ...@@ -37,4 +37,4 @@ test:linux:
- mkdir cpp_build && cd cpp_build - mkdir cpp_build && cd cpp_build
- cmake .. - cmake ..
- make install & cd .. - make install & cd ..
- ./gradlew test --stacktrace - ./gradlew test --info --stacktrace
import org.gradle.api.tasks.testing.logging.TestLogEvent
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'application' apply plugin: 'application'
apply plugin: 'antlr' apply plugin: 'antlr'
...@@ -48,9 +50,7 @@ test { ...@@ -48,9 +50,7 @@ test {
//maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1 //maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
testLogging { testLogging {
exceptionFormat = 'full' events += [TestLogEvent.PASSED]
showStandardStreams = true
events 'failed', 'skipped', 'passed'
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment