diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 7f55245..46b328c 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -25,9 +25,6 @@ quoting: schema: false models: - +persist_docs: - relation: true - columns: true snowplow_media_player_integration_tests: bind: false +schema: 'snplw_media_player_int_tests' @@ -42,8 +39,8 @@ models: +enabled: '{{ target.type == "snowflake" | as_bool() }}' snowplow_media_player: +persist_docs: - relation: true - columns: true + relation: false + columns: false custom: +enabled: true diff --git a/models/custom/snowplow_media_player_custom.yml b/models/custom/snowplow_media_player_custom.yml index 75dbaeb..883f660 100644 --- a/models/custom/snowplow_media_player_custom.yml +++ b/models/custom/snowplow_media_player_custom.yml @@ -6,7 +6,7 @@ models: description: '{{ doc("table_session_stats") }}' columns: - name: domain_sessionid - description: '{{ doc("col_session_identifier") }}' + description: 'The first domain_sessionid from domain_sessionid_array' tags: - primary-key tests: @@ -44,6 +44,7 @@ models: description: '{{ doc("col_avg_percent_played") }}' - name: complete_plays description: '{{ doc("col_complete_plays") }}' + - name: snowplow_media_player_user_stats +tags: "snowplow_media_player_incremental" description: '{{ doc("table_user_stats") }}'