@@ -110,6 +110,7 @@ def from_parts(
110110 selectors = project .selectors ,
111111 query_comment = project .query_comment ,
112112 sources = project .sources ,
113+ tests = project .tests ,
113114 vars = project .vars ,
114115 config_version = project .config_version ,
115116 unrendered = project .unrendered ,
@@ -272,7 +273,7 @@ def _get_config_paths(
272273 return frozenset (paths )
273274
274275 def get_resource_config_paths (self ) -> Dict [str , PathSet ]:
275- """Return a dictionary with 'seeds' and 'models' keys whose values are
276+ """Return a dictionary with resource type keys whose values are
276277 lists of lists of strings, where each inner list of strings represents
277278 a configured path in the resource.
278279 """
@@ -281,6 +282,7 @@ def get_resource_config_paths(self) -> Dict[str, PathSet]:
281282 'seeds' : self ._get_config_paths (self .seeds ),
282283 'snapshots' : self ._get_config_paths (self .snapshots ),
283284 'sources' : self ._get_config_paths (self .sources ),
285+ 'tests' : self ._get_config_paths (self .tests ),
284286 }
285287
286288 def get_unused_resource_config_paths (
@@ -488,6 +490,7 @@ def from_parts(
488490 selectors = project .selectors ,
489491 query_comment = project .query_comment ,
490492 sources = project .sources ,
493+ tests = project .tests ,
491494 vars = project .vars ,
492495 config_version = project .config_version ,
493496 unrendered = project .unrendered ,
0 commit comments