dbt-core
dbt-core copied to clipboard
[Bug] Can't pass `args` for `run-operation` in programmatic invocation as kwarg
Is this a new bug in dbt-core?
- [X] I believe this is a new bug in dbt-core
- [X] I have searched the existing issues, and I could not find an existing issue for this bug
Current Behavior
Passing the --args
parameter as a kwarg to the dbtRunner.invoke
method throws a TypeError
. This forces the parameter to only be pass as:
dbtRunner().invoke(['run-operation', '--args', '...'])
This looks to be caused by a naming conflict with the invoke
method here
Expected Behavior
To also be able to pass it as a kwarg
dbtRunner().invoke(['run-operation'], args=...)
Steps To Reproduce
from dbt.cli.main import dbtRunner
runner = dbtRunner()
runner.invoke(['run-operation', 'some_macro'], args={'arg1': 'foo', 'arg2': 'goo'})
Relevant log output
TypeError
...
TypeError: dbtRunner.invoke() got multiple values for argument 'args'
Environment
- OS: MacOS Sonoma 14.4
- Python: 3.10.12
- dbt: 1.8.3
Which database adapter are you using with dbt?
snowflake
Additional Context
No response