Skip to content

Commit

Permalink
Fully preserve current behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeatty10 committed Sep 17, 2024
1 parent bcfef4d commit ceecfec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/dbt/task/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def get_node_selector(self, no_unit_tests=False) -> ResourceTypeSelector:
graph=self.graph,
manifest=self.manifest,
previous_state=self.previous_state,
resource_types=resource_types,
resource_types=[NodeType.Test, NodeType.Unit],
)
return ResourceTypeSelector(
graph=self.graph,
Expand Down
2 changes: 1 addition & 1 deletion core/dbt/task/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def get_node_selector(self):
graph=self.graph,
manifest=self.manifest,
previous_state=self.previous_state,
resource_types=self.resource_types,
resource_types=[NodeType.Test, NodeType.Unit],
)
else:
return ResourceTypeSelector(
Expand Down

0 comments on commit ceecfec

Please sign in to comment.