Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .buildkite/hooks/pre-command

This file was deleted.

74 changes: 0 additions & 74 deletions .buildkite/pipeline.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .buildkite/scripts/run_models.sh

This file was deleted.

50 changes: 0 additions & 50 deletions integration_tests/ci/sample.profiles.yml

This file was deleted.

23 changes: 23 additions & 0 deletions integration_tests/ci/test_scenarios.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Only set if not using default adapter ranges
# dbt_adapter_versions:
# snowflake: ">=1.3.0,<2.0.0"
# bigquery: ">=1.3.0,<2.0.0"
# postgres: ">=1.3.0,<2.0.0"
# redshift: ">=1.3.0,<2.0.0"
# databricks: ">=1.6.0,<2.0.0"

schema_variable_name: "apple_store_schema"

include_databricks_sql: false
include_sqlserver: false
include_dbt_compile: true

test_scenarios:
- name: "Default"
vars: {}
include_incremental: false

- name: "subscriptions enabled"
vars:
apple_store__using_subscriptions: true
include_incremental: false
35 changes: 31 additions & 4 deletions integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ profile: 'integration_tests'

vars:
# apple_store__using_subscriptions: True # @docs-include
apple_store_schema: apple_store_integration_tests_14
apple_store_schema: apple_store_integration_tests
apple_store:
apple_store_app_identifier: "app_store_app"
apple_store_sales_subscription_event_summary_identifier: "sales_subscription_event_summary"
Expand All @@ -34,9 +34,36 @@ seeds:
show: False
apple_store_integration_tests:
+quote_columns: "{{ true if target.type == 'redshift' else false }}"
+column_types:
_fivetran_synced: timestamp
date: date
app_crash_daily:
+column_types:
_fivetran_synced: timestamp
date: date
app_session_standard_daily:
+column_types:
_fivetran_synced: timestamp
date: date
app_store_app:
+column_types:
_fivetran_synced: timestamp
app_store_discovery_and_engagement_standard_daily:
+column_types:
_fivetran_synced: timestamp
date: date
app_store_download_standard_daily:
+column_types:
_fivetran_synced: timestamp
date: date
app_store_installation_and_deletion_standard_daily:
+column_types:
_fivetran_synced: timestamp
date: date
sales_subscription_event_summary:
+column_types:
_fivetran_synced: timestamp
sales_subscription_summary:
+column_types:
_fivetran_synced: timestamp
date: date

dispatch:
- macro_namespace: dbt_utils
Expand Down
Loading