You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
id: dbt_duckdbnamespace: blueprinttasks:
- id: dbttype: io.kestra.core.tasks.flows.WorkingDirectorytasks:
- id: cloneRepositorytype: io.kestra.plugin.git.Cloneurl: https://github.com/kestra-io/dbt-examplebranch: main
- id: dbt-buildtype: io.kestra.plugin.dbt.cli.DbtCLIrunner: DOCKERdocker:
image: ghcr.io/kestra-io/dbt-duckdb:latestcommands:
- dbt deps
- dbt build
- dbt test # remove this line and everything will work just fineprofiles: | my_dbt_project: outputs: dev: type: duckdb path: ":memory:" fixed_retries: 1 threads: 1 timeout_seconds: 300 target: dev
this will fail with:
Runtime Error in test unique_my_second_dbt_model_id (models/example/schema.yml)2024-02-19 12:43:11.523 Catalog Error: Table with name my_second_dbt_model does not exist!2024-02-19 12:43:11.527 Did you mean "temp.pg_catalog.pg_enum"?2024-02-19 12:43:11.528 LINE 15: from "memory"."main"."my_second_dbt_model"
Removing dbt test works.
Funny enough, dbt build already runs dbt test under the hood and it works just fine
The text was updated successfully, but these errors were encountered:
Feature description
this will fail with:
Removing dbt test works.
Funny enough, dbt build already runs dbt test under the hood and it works just fine
The text was updated successfully, but these errors were encountered: