We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug It's not possible to really disable the elementary hooks, even if you disable all the autoupdates the hook will still run.
To Reproduce
Save your dbt_project.yml in
dbt_project.yml
vars: disable_run_results: true disable_freshness_results: true disable_tests_results: true disable_dbt_artifacts_autoupload: true disable_dbt_columns_autoupload: true disable_dbt_invocation_autoupload: true
Have the elementary enabled and run, this will still show the on-run-start
The option is running
elementary: enable: false
The problem with this is that I have to many models and my elementary breaks.
Expected behavior I want to be able to run elementary manually and not run any hooks.
Environment (please complete the following information):
Suggestion
on-run-start: - "{{ elementary.on_run_start() if env_var('DISABLE_ELEMENTARY_HOOKS','false') != 'true' else None}}" on-run-end: - "{{ elementary.on_run_end() if env_var('DISABLE_ELEMENTARY_HOOKS','false') != 'true' else None}}"
This if worked would solve the problem.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
It's not possible to really disable the elementary hooks, even if you disable all the autoupdates the hook will still run.
To Reproduce
Save your
dbt_project.yml
inHave the elementary enabled and run, this will still show the on-run-start
The option is running
The problem with this is that I have to many models and my elementary breaks.
Expected behavior
I want to be able to run elementary manually and not run any hooks.
Environment (please complete the following information):
Suggestion
This if worked would solve the problem.
The text was updated successfully, but these errors were encountered: