-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dbt_runner: make sure we don't fail on unrelated logs (#1590)
* dbt_runner: make sure we don't fail on unrelated logs * add newline * Update packages.yml to reflect newer package dependency * oops * command_line_dbt_runner: allow returning raw logs so the deprecated tests will work
- Loading branch information
Showing
5 changed files
with
32 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
packages: | ||
- package: dbt-labs/dbt_utils | ||
version: [">=0.8.0", "<0.9.0"] | ||
- package: elementary-data/elementary | ||
version: 0.15.1 | ||
- git: https://github.com/elementary-data/dbt-data-reliability.git | ||
revision: 42fb88ca59a06c945fb56cb16c66af588fa079fa | ||
# - package: elementary-data/elementary | ||
# version: 0.15.1 | ||
|
||
# NOTE - for unreleased CLI versions we often need to update the package version to a commit hash (please leave this | ||
# commented, so it will be easy to access) | ||
# - git: https://github.com/elementary-data/dbt-data-reliability.git | ||
# revision: 449da8f16976889ebb8dcce441bfb461b924f008 | ||
# revision: 42fb88ca59a06c945fb56cb16c66af588fa079fa |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% macro dummy_macro() %} | ||
{# Validate that logs in the macro don't fail the dbt runner #} | ||
{% do elementary.edr_log('Amazing macro, so happy to be here') %} | ||
{% do return({'goodbye': 'toodleoo'}) %} | ||
{% endmacro %} |
This file contains 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
This file contains 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