We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c04ef7a commit 6c6abdbCopy full SHA for 6c6abdb
src/_pytask/outcomes.py
@@ -103,6 +103,7 @@ class TaskOutcome(Enum):
103
SKIP = auto()
104
SKIP_PREVIOUS_FAILED = auto()
105
FAIL = auto()
106
+ WOULD_BE_EXECUTED = auto()
107
108
@property
109
def symbol(self) -> str:
@@ -218,6 +219,10 @@ class Persisted(PytaskOutcome):
218
219
"""Outcome if task should persist."""
220
221
222
+class WouldBeExecuted(PytaskOutcome):
223
+ """Outcome if a task would be executed."""
224
+
225
226
class Exit(Exception):
227
"""Raised for immediate program exits (no tracebacks/summaries)."""
228
0 commit comments