1
0
mirror of synced 2025-12-19 18:14:56 -05:00

Java connectors: echo junit test stdout to console (#53677)

This commit is contained in:
Edward Gao
2025-02-13 15:14:50 -08:00
committed by GitHub
parent 8da5b34377
commit cd1f957764
3 changed files with 3 additions and 6 deletions

View File

@@ -133,8 +133,7 @@ allprojects {
testLogging() {
events 'skipped', 'started', 'passed', 'failed'
exceptionFormat 'full'
// Swallow the logs when running in airbyte-ci, rely on test reports instead.
showStandardStreams = !System.getenv().containsKey("RUN_IN_AIRBYTE_CI")
showStandardStreams = true
}
reports {
junitXml {

View File

@@ -216,8 +216,7 @@ class AirbyteBulkConnectorPlugin implements Plugin<Project> {
testLogging() {
events 'skipped', 'started', 'passed', 'failed'
exceptionFormat 'full'
// Swallow the logs when running in airbyte-ci, rely on test reports instead.
showStandardStreams = !System.getenv().containsKey("RUN_IN_AIRBYTE_CI")
showStandardStreams = true
}
// Always re-run integration tests no matter what.

View File

@@ -200,8 +200,7 @@ class AirbyteJavaConnectorPlugin implements Plugin<Project> {
testLogging() {
events 'skipped', 'started', 'passed', 'failed'
exceptionFormat 'full'
// Swallow the logs when running in airbyte-ci, rely on test reports instead.
showStandardStreams = !System.getenv().containsKey("RUN_IN_AIRBYTE_CI")
showStandardStreams = true
}
jvmArgs = project.test.jvmArgs