diff --git a/build.gradle b/build.gradle index 727e71510f336..124b8eaa2c37b 100644 --- a/build.gradle +++ b/build.gradle @@ -357,8 +357,9 @@ subprojects { subproj -> excludeTags(integrationTagName, slowIntegrationTagName, cloudStorageTestTagName) } testLogging() { - events 'failed' + events "passed", "skipped", "failed" exceptionFormat 'full' + // uncomment to get the full log output // showStandardStreams = true } finalizedBy jacocoTestReport @@ -369,8 +370,10 @@ subprojects { subproj -> includeTags integrationTagName } testLogging() { - events 'failed' + events "passed", "failed", "started" exceptionFormat 'full' + // uncomment to get the full log output + // showStandardStreams = true } finalizedBy jacocoTestReport } @@ -380,8 +383,10 @@ subprojects { subproj -> includeTags slowIntegrationTagName } testLogging() { - events 'failed' + events "passed", "failed", "started" exceptionFormat 'full' + // uncomment to get the full log output + // showStandardStreams = true } finalizedBy jacocoTestReport } @@ -389,8 +394,10 @@ subprojects { subproj -> task allTests(type: Test) { useJUnitPlatform() testLogging() { - events 'failed' + events "passed", "failed", "started" exceptionFormat 'full' + // uncomment to get the full log output + // showStandardStreams = true } finalizedBy jacocoTestReport } diff --git a/buildSrc/src/main/groovy/airbyte-integration-test-java.gradle b/buildSrc/src/main/groovy/airbyte-integration-test-java.gradle index fde263668ce93..767f309d3a0d9 100644 --- a/buildSrc/src/main/groovy/airbyte-integration-test-java.gradle +++ b/buildSrc/src/main/groovy/airbyte-integration-test-java.gradle @@ -31,9 +31,10 @@ class AirbyteIntegrationTestJavaPlugin implements Plugin { } testLogging() { - events "passed", "failed" + events "passed", "failed", "started" exceptionFormat "full" - showStandardStreams = true + // uncomment to get the full log output + // showStandardStreams = true } outputs.upToDateWhen { false }