This commit is contained in:
Eric Laurello 2023-10-23 14:04:56 -04:00
parent 6311090615
commit 6fe9fc687a
2 changed files with 20 additions and 5 deletions

View File

@ -1,14 +1,14 @@
# Name your project! Project names should contain only lowercase characters
# and underscores. A good package name should reflect your organization's
# name or the intended use of these models
name: "xyz_models"
name: "aptos_models"
version: "1.0.0"
config-version: 2
require-dbt-version: ">=1.4.0"
# This setting configures which "profile" dbt uses for this project.
profile: "xyz"
profile: "aptos"
# These configurations specify where dbt should look for different types of files.
# The `model-paths` config, for example, states that models in this project can be
@ -41,7 +41,11 @@ models:
vars:
"dbt_date:time_zone": GMT
"UPDATE_SNOWFLAKE_TAGS": TRUE
OBSERV_FULL_TEST: FALSE
UPDATE_SNOWFLAKE_TAGS: TRUE
STREAMLINE_INVOKE_STREAMS: False
STREAMLINE_USE_DEV_FOR_EXTERNAL_TABLES: False
UPDATE_UDFS_AND_SPS: False
tests:
+store_failures: true # all tests
@ -51,4 +55,15 @@ on-run-start:
- '{{create_udfs()}}'
on-run-end:
- '{{ apply_meta_as_tags(results) }}'
- '{{ apply_meta_as_tags(results) }}'
dispatch:
- macro_namespace: dbt
search_order:
- sei-models
- dbt_snowflake_query_tags
- dbt
query-comment:
comment: '{{ dbt_snowflake_query_tags.get_query_comment(node) }}'
append: true # Snowflake removes prefixed comments.

View File

@ -4,6 +4,6 @@ packages:
- package: dbt-labs/dbt_utils
version: 1.0.0
- git: https://github.com/FlipsideCrypto/fsc-utils.git
revision: "v1.8.0"
revision: "v1.7.0"
- package: get-select/dbt_snowflake_query_tags
version: [">=2.0.0", "<3.0.0"]