mirror of
https://github.com/dbt-labs/dbt-project-evaluator.git
synced 2025-12-18 02:11:27 +00:00
47 lines
1.5 KiB
YAML
47 lines
1.5 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() }}"
|
|
|
|
flags:
|
|
require_nested_cumulative_type_params: True
|
|
require_yaml_configuration_for_mf_time_spines: True
|
|
require_generic_test_arguments_property: True
|
|
|
|
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"]]
|