File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ def pytask_collect_node( # noqa: C901, PLR0912
437
437
node .name = create_name_of_python_node (node_info )
438
438
return node
439
439
440
- if isinstance (node , UPath ):
440
+ if isinstance (node , UPath ): # pragma: no cover
441
441
if not node .protocol :
442
442
node = Path (node )
443
443
else :
Original file line number Diff line number Diff line change @@ -382,7 +382,7 @@ def load(self, is_product: bool = False) -> Path:
382
382
if is_product :
383
383
return self .root_dir # type: ignore[return-value]
384
384
msg = "'DirectoryNode' cannot be loaded as a dependency" # pragma: no cover
385
- raise NotImplementedError (msg )
385
+ raise NotImplementedError (msg ) # pragma: no cover
386
386
387
387
def collect (self ) -> list [Path ]:
388
388
"""Collect paths defined by the pattern."""
You can’t perform that action at this time.
0 commit comments