Java connectors: echo junit test stdout to console (#53677)
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user