feat(v2): enqueue and lease durable executions

This commit is contained in:
2026-07-27 21:48:26 +02:00
parent f3858ac43a
commit 057895f138
4 changed files with 139 additions and 1 deletions
+6 -1
View File
@@ -1,6 +1,11 @@
from __future__ import annotations
from backup_tool.execution import ACTIVE_STATES, TERMINAL_STATES, TransitionError, transition
from backup_tool.execution import (
ACTIVE_STATES,
TERMINAL_STATES,
TransitionError,
transition,
)
def test_transitions_are_monotonic_and_terminal_states_cannot_change() -> None: