-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade project to support dbt 0.1.x (#127)
* Remove duplicate test * Update to exclude new pacakge folder * Update paths * Update test.sh to use dbt build * update gitignore * Upgrade project to support dbt 0.1.x * Require dbt-date >= 0.5.0 * Enable support for dbt 1.x (#128) * rebase * Update paths * Update test.sh to use dbt build * update gitignore * rebase * Require dbt-date >= 0.5.0 * Update README
- Loading branch information
1 parent
28d47f7
commit d7f9860
Showing
6 changed files
with
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
|
||
target/ | ||
dbt_modules/ | ||
dbt_packages/ | ||
logs/ | ||
.python-version |
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 |
---|---|---|
|
@@ -5,9 +5,7 @@ i=1; | |
for t in "$@" | ||
do | ||
|
||
dbt seed -t $t && | ||
dbt run -t $t && | ||
dbt test -t $t | ||
dbt build -t $t | ||
|
||
done | ||
|
||
|
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,3 +1,3 @@ | ||
packages: | ||
- package: calogica/dbt_date | ||
version: [">=0.4.0", "<0.5.0"] | ||
version: [">=0.5.0", "<0.6.0"] |