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
{{ message }}
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
I've been staring at this for some time trying to figure out if I am overlooking something. From what I can tell (and confirm from Consideration with Hooks ) dbt seed will call the on-run-start hook prior to creating any tables to load the seed data. However, the test defined in dbt-integration-tests is trying to insert a row into a seed table during the on-run-start hook.
@mpcarter Is this an issue you're running into on the Vertica adapter you're working on?
I'd say really quickly that:
This repo is a work in progress, and really more a proof of concept than a finalized answer for testing new dbt adapters
We currently don't run the 003_hooks.feature for dbt-sparktesting
@drewbanin and I are in the midst of a conversation about how best to federate integration and end-to-end tests between dbt-core and adapter plugins. Most likely, it will look less like this repo, and more like splitting out the tests currently defined here. We would then allow each plugin to define which tests it needs to override, which features are unsupported (= don't run those tests at all), and which tests it should run in addition to the core set.
I've been staring at this for some time trying to figure out if I am overlooking something. From what I can tell (and confirm from Consideration with Hooks )
dbt seed
will call theon-run-start
hook prior to creating any tables to load the seed data. However, the test defined in dbt-integration-tests is trying to insert a row into a seed table during theon-run-start
hook.https://github.com/fishtown-analytics/dbt-integration-tests/blob/a0333529184a7065e3d4add2ec694d4acc543a57/features/003_hooks.feature#L36-L41
https://github.com/fishtown-analytics/dbt-integration-tests/blob/a0333529184a7065e3d4add2ec694d4acc543a57/features/003_hooks.feature#L62-L63
So my test keeps failing because you cannot insert data into a table that does not exist yet.
The text was updated successfully, but these errors were encountered: