From 59586771c5df17a30fdb4055ec241a7c9a0c7b43 Mon Sep 17 00:00:00 2001 From: Quigley Malcolm Date: Mon, 9 Dec 2024 15:06:13 -0600 Subject: [PATCH] Update results interpretation to include `PartialSuccess` as failure status --- core/dbt/task/runnable.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/dbt/task/runnable.py b/core/dbt/task/runnable.py index b889558d048..55342cafbbc 100644 --- a/core/dbt/task/runnable.py +++ b/core/dbt/task/runnable.py @@ -626,6 +626,7 @@ def interpret_results(cls, results): NodeStatus.Error, NodeStatus.Fail, NodeStatus.Skipped, # propogate error message causing skip + NodeStatus.PartialSuccess, # because partial success also means partial failure ) ] return len(failures) == 0