Skip to content

Commit

Permalink
update run_dbt_and_capture command
Browse files Browse the repository at this point in the history
  • Loading branch information
McKnight-42 committed Aug 5, 2024
1 parent ecacae7 commit 27d3cab
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ def models(self):
def test_run_incremental_check_quoting_on_new_columns(self, project):
select = "src_jobs dim_jobs"
run_dbt(["run", "--models", select, "--full-refresh"])
res, logs = run_dbt_and_capture(["run", "--inline", "select * from {{ ref('dim_jobs') }}"])
res, logs = run_dbt_and_capture(["run", "--inline", "dim_jobs"])
run_dbt(["run", "--vars", "{'version': 1}"])
res, logs = run_dbt_and_capture(
["run", "--inline", "select * from {{ ref('dim_jobs') }}"],
["run", "--inline", "dim_jobs"],
)

0 comments on commit 27d3cab

Please sign in to comment.