Fix MissingArgumentsPropertyInGenericTestDeprecation warning - #568
Open
a-schot wants to merge 1 commit into
Open
Fix MissingArgumentsPropertyInGenericTestDeprecation warning#568a-schot wants to merge 1 commit into
a-schot wants to merge 1 commit into
Conversation
a-schot
marked this pull request as draft
August 18, 2026 12:59
Wrap generic test arguments under the 'arguments:' property: - 9x dbt_artifacts.is_between (min_value/max_value) - 2x accepted_values (values) Resolves brooklyn-data#567
a-schot
force-pushed
the
fix/generic-test-arguments-deprecation
branch
from
August 18, 2026 13:07
9485a38 to
8307308
Compare
a-schot
marked this pull request as ready for review
August 18, 2026 13:11
|
We've encountered the same thing and I was delighted to see an open PR already. ⬆️ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Fix
MissingArgumentsPropertyInGenericTestDeprecationwarnings that fire when parsing dbt_artifacts models on dbt Core 1.10.5+.Update type - breaking / non-breaking
What does this solve?
Resolves #567
Wraps generic test arguments under the
arguments:property:dbt_artifacts.is_between—min_value/max_valuenested underarguments:accepted_values—valuesnested underarguments:The
arguments:property is recognized by dbt Core >=1.10.5 and is required (with deprecation warning) from 1.10.8+. On older versions the property is silently ignored, so this change is fully backward-compatible with the package's existingrequire-dbt-versionconstraint.Outstanding questions
None.
What databases have you tested with?