E2E tests in dbt: can unit test framework do it? #10681
Unanswered
IliaOzhmegov
asked this question in
Q&A
Replies: 1 comment 6 replies
-
The unit testing framework is about unit testing individual models, not pipeline. So, what you describe is not possible out of the box. What you could do is:
|
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With a new updated version of dbt-core, it became possible to test the logic for transformation steps. However, it does not allow to do E2E tests in dbt, or does it?
I have a pretty standart case:

a few sources, some intermediate tables and some fact (red table), so I want to mock data for sources or at least staging, and then just make sure that the very end is correct (red table). Is there a way to do it in dbt? Is it possible to to with unit test framework?
Beta Was this translation helpful? Give feedback.
All reactions