Skip to content

Commit

Permalink
🔧 Setup integration test files
Browse files Browse the repository at this point in the history
  • Loading branch information
jurrigerretsen committed Jan 16, 2024
1 parent eac3a93 commit 1a1a4d3
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ dbt_packages/
logs/
.venv
.env
.DS_Store
package-lock.yml
.DS_Store
12 changes: 8 additions & 4 deletions dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: 'tasman_dbt_revenuecat'
version: '0.0.1'

require-dbt-version: [">=1.3.0", "<2.0.0"]

config-version: 2
require-dbt-version: [">=1.6.0", "<2.0.0"]

profile: 'tasman_dbt_revenuecat'

target-path: "target"
#clean-targets: ["target", "dbt_modules", "dbt_packages"]
macro-paths: ["macros"]
clean-targets: ["target", "dbt_modules", "dbt_packages"]
log-path: "logs"

models:
tasman_dbt_revenuecat:
+materialized: table
16 changes: 16 additions & 0 deletions integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'tasman_dbt_revenuecat_integration_tests'
version: '1.0'

config-version: 2

profile: 'tasman_integration_tests'

seed-paths: ["data"]
macro-paths: ["macros"]
target-path: "target"
clean-targets: ["target", "dbt_modules", "dbt_packages"]
log-path: "logs"

vars:
tasman_dbt_revenuecat:
revenuecat_table: "seed_mocked_transactions"
3 changes: 3 additions & 0 deletions integration_tests/package-lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
packages:
- local: ../
sha1_hash: de2deba3d66ce03d8c02949013650cc9b94f6030
2 changes: 2 additions & 0 deletions integration_tests/packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
packages:
- local: ../

0 comments on commit 1a1a4d3

Please sign in to comment.