Skip to content

Commit

Permalink
Bulk Load CDK: always run integration tests (#52569)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgao authored Feb 12, 2025
1 parent f0a96b3 commit 1bebecf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions buildSrc/src/main/groovy/airbyte-bulk-connector.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 1bebecf

Please sign in to comment.