We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf4fcbd commit 6e5679cCopy full SHA for 6e5679c
docs/source/tutorials/skipping_tasks.md
@@ -14,7 +14,7 @@ skip tasks during development that take too much time to compute right now.
14
```
15
16
Not only will this task be skipped, but all tasks depending on
17
-`time_intensive_product`.pkl\`.
+`time_intensive_product.pkl`.
18
19
## Conditional skipping
20
src/_pytask/nodes.py
@@ -359,6 +359,7 @@ def signature(self) -> str:
359
return hashlib.sha256(raw_key.encode()).hexdigest()
360
361
def load(self, is_product: bool = False) -> Path:
362
+ """Inject a path into the task when loaded as a product."""
363
if is_product:
364
return self.root_dir # type: ignore[return-value]
365
msg = "'DirectoryNode' cannot be loaded as a dependency" # pragma: no cover
0 commit comments