Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
haritamar committed Nov 5, 2024
1 parent 79a704b commit f946ad5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion integration_tests/tests/test_dbt_artifacts/test_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ def test_timings(dbt_project: DbtProject):
dbt_project.dbt_runner.vars["disable_dbt_artifacts_autoupload"] = False
dbt_project.dbt_runner.vars["disable_run_results"] = False
dbt_project.dbt_runner.run(select=TEST_MODEL)
results = dbt_project.run_query('select * from {{ ref("dbt_run_results") }}')
results = dbt_project.run_query(
"""select * from {{ ref("dbt_run_results") }} where name='%s'""" % TEST_MODEL
)

assert len(results) == 1
assert results[0]["execute_started_at"]

0 comments on commit f946ad5

Please sign in to comment.