From c4f12f1c40dceae9d1bb2a1bad8ca53f7343bcfa Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Mon, 27 Jan 2025 09:43:12 -0800 Subject: [PATCH] always run itest --- buildSrc/src/main/groovy/airbyte-bulk-connector.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/buildSrc/src/main/groovy/airbyte-bulk-connector.gradle b/buildSrc/src/main/groovy/airbyte-bulk-connector.gradle index adfc75113488d..059ccacff1976 100644 --- a/buildSrc/src/main/groovy/airbyte-bulk-connector.gradle +++ b/buildSrc/src/main/groovy/airbyte-bulk-connector.gradle @@ -184,6 +184,9 @@ class AirbyteBulkConnectorPlugin implements Plugin { 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 { // 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 {