Skip to content

Commit

Permalink
Fix hook tests (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
aranke authored Oct 1, 2024
1 parent 2fc6561 commit cb4a953
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .changes/1.9.0-b1.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@
- [@morsapaes](https://github.com/morsapaes) ([#120](https://github.com/dbt-labs/dbt-postgres/issues/120))
- [@peterallenwebb](https://github.com/peterallenwebb) ([#123](https://github.com/dbt-labs/dbt-postgres/issues/123))
- [@versusfacit](https://github.com/versusfacit) ([#85](https://github.com/dbt-labs/dbt-postgres/issues/85))

8 changes: 4 additions & 4 deletions tests/functional/schema_tests/test_schema_v2_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,9 +472,9 @@ def test_hooks_do_run_for_tests(
):
# This passes now that hooks run, a behavior we changed in v1.0
results = run_dbt(["test", "--model", "ephemeral"])
assert len(results) == 1
assert len(results) == 3
for result in results:
assert result.status == "pass"
assert result.status in ("pass", "success")
assert not result.skipped
assert result.failures == 0, "test {} failed".format(result.node.name)

Expand Down Expand Up @@ -505,9 +505,9 @@ def test_these_hooks_dont_run_for_tests(
):
# This would fail if the hooks ran
results = run_dbt(["test", "--model", "ephemeral"])
assert len(results) == 1
assert len(results) == 3
for result in results:
assert result.status == "pass"
assert result.status in ("pass", "success")
assert not result.skipped
assert result.failures == 0, "test {} failed".format(result.node.name)

Expand Down

0 comments on commit cb4a953

Please sign in to comment.