DalgoT4D / dbt_stir

This repo is to maintain transformations for SurveyCTO data. We have used Airbyte to pull data from SyrveyCTO. Checkout our Airbyte Repo
0 stars 1 forks source link

enable elementary data quality #48

Closed fatchat closed 3 months ago

fatchat commented 3 months ago

In order to enable dbt test reporting via Elementary, we need to make two changes as described here

  1. Add to packages.yml:

    packages:
    - package: elementary-data/elementary
    version: 0.15.2
    ## Docs: https://docs.elementary-data.com
  2. Add to dbt_project.yml

    
    models:
    ## see docs: https://docs.elementary-data.com/
    elementary:
    ## elementary models will be created in the schema '<your_schema>_elementary'
    +schema: "elementary"
    ## To disable elementary for dev, uncomment this:
    # enabled: "{{ target.name in ['prod'] }}"

Required from dbt 1.8 and above for certain Elementary features (please see more details above)

flags: require_explicit_package_overrides_for_builtin_materializations: false