Files
dbt-project-evaluator/integration_tests_2/dbt_project.yml
2024-09-03 14:34:31 +02:00

42 lines
1.4 KiB
YAML

# 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: 'dbt_project_evaluator_integration_tests_2'
version: '1.0.0'
config-version: 2
# This setting configures which "profile" dbt uses for this project.
profile: 'integration_tests'
# These configurations specify where dbt should look for different types of files.
# The `source-paths` config, for example, states that models in this project can be
# found in the "models/" directory. You probably won't need to change these!
model-paths: ["models"]
analysis-paths: ["analysis"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
target-path: "target" # directory which will store compiled SQL files
clean-targets: # directories to be removed by `dbt clean`
- "target"
- "dbt_packages"
dispatch:
- macro_namespace: dbt
search_order: ['dbt_project_evaluator', 'dbt']
on-run-end: "{{ dbt_project_evaluator.print_dbt_project_evaluator_issues() }}"
models:
dbt_project_evaluator_integration_tests_2:
# materialize as ephemeral to prevent the fake models from executing, but keep them enabled
+materialized: ephemeral
vars:
max_depth_dag: 2
chained_views_threshold: 2
primary_key_test_macros: [["my_package.test_my_test", "dbt.test_not_null"]]