-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* fix for dbt v1.0.0 * updating workflow * allow multiple lines in log result Co-authored-by: robastel <[email protected]> * bump versions * hardcoding json log format * missing and * linter reformats * Run workflow on pull request synchronize * fixing python version for test in workflow * Exclude Python 3.9 dbt 0.18.x test combo * Update README.md Co-authored-by: robastel <[email protected]> Co-authored-by: Jan Nitschke <[email protected]>
- Loading branch information
1 parent
8e54944
commit 3819164
Showing
9 changed files
with
93 additions
and
16 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
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 +1 @@ | ||
__version__ = '0.1.2' | ||
__version__ = '0.1.3' |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
agate<1.6.2 | ||
dbt-core~=1.0.0 | ||
dbt-sqlite~=0.2.2 | ||
invoke>=1.4.1 | ||
pytz<2021.0 | ||
PyYAML>=5.1 | ||
-e . |
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,18 @@ | ||
name: test_dbt_project | ||
version: 1.0.0 | ||
config-version: 2 | ||
|
||
profile: dbt-sqlite | ||
|
||
seed-paths: ["data"] | ||
|
||
clean-targets: | ||
- target | ||
- dbt_packages | ||
- logs | ||
|
||
analysis-paths: | ||
- analyses | ||
|
||
snapshots: | ||
+target_schema: main |
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,16 @@ | ||
name: test_dbt_project | ||
version: 1.0.0 | ||
config-version: 2 | ||
|
||
profile: dbt-sqlite | ||
|
||
clean-targets: | ||
- target | ||
- dbt_modules | ||
- logs | ||
|
||
analysis-paths: | ||
- analyses | ||
|
||
snapshots: | ||
+target_schema: main |
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