Skip to content

Commit

Permalink
Handle PartialSuccess in interpret_run_result
Browse files Browse the repository at this point in the history
  • Loading branch information
QMalcolm committed Sep 20, 2024
1 parent 39b5cd5 commit 35963b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/task/printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def interpret_run_result(result) -> str:
return "error"
elif result.status == NodeStatus.Skipped:
return "skip"
elif result.status == NodeStatus.Warn:
elif result.status in (NodeStatus.Warn, NodeStatus.PartialSuccess):
return "warn"
elif result.status in (NodeStatus.Pass, NodeStatus.Success):
return "pass"
Expand Down

0 comments on commit 35963b4

Please sign in to comment.