-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix docs generation integration test #70
Fix docs generation integration test #70
Conversation
… result of core PR 4618.
@leahwicz Thanks for the pointer on consulting core merges as part of the debugging process. Got Redshift tests happy again with a touch of debugging following the read through of the Core PR! I'll be sure to follow that process in the future should "random" bugs arise |
@@ -183,6 +183,7 @@ def assert_has_keys( | |||
'invocation_id', | |||
'modules', | |||
'flags', | |||
'print' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this addition needed b/c of this PR dbt-labs/dbt-core#4701?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If so, I'm guessing the other adapters might need this update as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was. I'll merge this PR and look at the others
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doubled checked snowflake, bigquery, and spark. The unit tests of those are passing just fine! No additional fixes needed for this issue looks like. 😄
* Add unique_key field to config sections where it is now expected as a result of core PR 4618. * Remove duplicate key. * Fix unit test bug introduced by merge of dbt-core PR 4701. Co-authored-by: Mila Page <[email protected]>
Resolves bug to an integration test introduced by merge of multiple unique ids for integration tests
Description
The test diffs a pair of configs, in which must be certain parameters. Changes to core have necessitated the addition of
unique_id
to two configs in this test.Note:
Although this PR is small, it represents the same contextual work done with the matching Snowflake fix.
Checklist
CHANGELOG.md
and added information about my change to the "dbt-snowflake next" section.