From 5095c0d4be247ff6b3d2ce961aba8819dad69207 Mon Sep 17 00:00:00 2001 From: Sandy Ryza Date: Wed, 27 Jan 2021 13:54:24 -0800 Subject: [PATCH] pin dbt to <0.19.0 in dbt example Summary: This likely points to a breakage in dagster-dbt, but currently only the dbt example tests are failing. More info here: https://github.com/dagster-io/dagster/issues/3616. Test Plan: bk Reviewers: bob, max, johann Reviewed By: johann Subscribers: johann Differential Revision: https://dagster.phacility.com/D6189 --- examples/dbt_example/dbt_example_tests/test_pipeline.py | 1 - examples/dbt_example/setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/dbt_example/dbt_example_tests/test_pipeline.py b/examples/dbt_example/dbt_example_tests/test_pipeline.py index 25dbbb9901b7e..70a4ed1d71faf 100644 --- a/examples/dbt_example/dbt_example_tests/test_pipeline.py +++ b/examples/dbt_example/dbt_example_tests/test_pipeline.py @@ -45,6 +45,5 @@ def test_pipeline(pg_hostname, postgres): # pylint: disable=unused-argument "io_manager": {"config": {"base_dir": temp_dir}}, }, }, - raise_on_error=False, ) assert res.success diff --git a/examples/dbt_example/setup.py b/examples/dbt_example/setup.py index 2a438d60895c4..2300bc03c2286 100644 --- a/examples/dbt_example/setup.py +++ b/examples/dbt_example/setup.py @@ -14,7 +14,7 @@ "dagster-postgres", "dagster-slack", "dagstermill", - "dbt", + "dbt < 0.19.0", ], author="Elementl", license="Apache-2.0",