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

Bulk Load CDK: always run integration tests (#52569)

This commit is contained in:
Edward Gao
2025-02-12 14:06:22 -08:00
committed by GitHub
parent f0a96b3c1c
commit 1bebecf25c

View File

@@ -184,6 +184,9 @@ class AirbyteBulkConnectorPlugin implements Plugin<Project> {
events 'skipped', 'started', 'passed', 'failed'
exceptionFormat 'full'
}
// Always re-run integration tests no matter what.
outputs.upToDateWhen { false }
}
// For historical reasons (i.e. airbyte-ci), this task is called integrationTestJava.
@@ -216,6 +219,9 @@ class AirbyteBulkConnectorPlugin implements Plugin<Project> {
// Swallow the logs when running in airbyte-ci, rely on test reports instead.
showStandardStreams = !System.getenv().containsKey("RUN_IN_AIRBYTE_CI")
}
// Always re-run integration tests no matter what.
outputs.upToDateWhen { false }
}
project.dependencies {