Skip to content

Commit

Permalink
Merge pull request #13 from kowalks/main
Browse files Browse the repository at this point in the history
Changed source-path and data-paths config
  • Loading branch information
emilyriederer authored May 13, 2022
2 parents 6506814 + 8903217 commit d15eab0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# and underscores. A good package name should reflect your organization's
# name or the intended use of these models
name: 'dbtplyr'
version: '0.3.0'
version: '0.3.1'
config-version: 2
require-dbt-version: ">=1.0.0"

Expand All @@ -13,10 +13,10 @@ profile: 'dbtplyr'
# These configurations specify where dbt should look for different types of files.
# The `source-paths` config, for example, states that models in this project can be
# found in the "models/" directory. You probably won't need to change these!
source-paths: ["models"]
model-paths: ["models"]
analysis-paths: ["analysis"]
test-paths: ["tests"]
data-paths: ["data"]
seed-paths: ["data"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]

Expand Down
6 changes: 3 additions & 3 deletions integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ profile: 'dbtplyr'

config-version: 2

source-paths: ["models"]
model-paths: ["models"]
analysis-paths: ["analysis"]
test-paths: ["tests"]
data-paths: ["data"]
seed-paths: ["data"]
macro-paths: ["macros"]

target-path: "target" # directory which will store compiled SQL files
Expand All @@ -19,4 +19,4 @@ clean-targets: # directories to be removed by `dbt clean`
- "dbt_modules"

seeds:
+quote_columns: true
+quote_columns: true

0 comments on commit d15eab0

Please sign in to comment.