Doug Beatty
Doug Beatty
[Feature] unit testing: dbt should tell me why it couldn't get columns (the model doesn't yet exist)
> I tried making my first unit test from scratch (no using the docs!) and got the below error. That's awesome 🤩 Yeah, it would be nice to give more...
Thanks for reporting this @mbarnathan-os 👍 I was able to reproduce what you described. See details below. ### Reprex `dbt_project.yml` ```yaml name: "my_project" version: "1.0.0" config-version: 2 profile: "some_profile" model-paths:...
Thanks for reporting this @siljamardla ! I see what you are saying about using an ephemeral model in a post hook. It looks to me like the reference is being...
Thanks for opening this @b-per ! It seems reasonable to give the anonymous tracking a quick shot and give up after a very short amount of time (1 or 2...
Thanks for reaching out @irisschen. Can you provide an example dbt python model that you are having problems with so that we can try to reproduce it? And can you...
Thanks for sharing that @irisschen. We'd still need a bit more information in order to try reproducing it. Could you also share the the following: - Simple model (or seed)...
Thanks for opening this @stevenayers ! Can you share more about the specific use cases where combining a CLI flag with an environment variable is necessary or beneficial versus just...
We'd be happy to take a look @endlessdb. We've used that version a bit and haven't seen that issue pop up yet. We'd just need a simple set of project...
Something like this: ### Reprex Create these files: `models/my_model.sql` ```sql select 1 as id, null as status ``` `models/_models.yml` ```yaml models: - name: my_model columns: - name: status tests: -...
Thanks for trying out unit testing and reporting this @leesiongchan ! ### How dbt seeds treat empty values https://github.com/dbt-labs/docs.getdbt.com/issues/4867 describes how dbt [seeds](https://docs.getdbt.com/docs/build/seeds) handle empty strings by converting them to...