refactor(tests): Add strict type hints to final batch of test files

This commit is contained in:
2026-02-28 19:31:19 -05:00
parent f5e43c7987
commit 7a0e8e6366
7 changed files with 11 additions and 13 deletions

View File

@@ -2,8 +2,7 @@ import pytest
from models import Ticket
from dag_engine import TrackDAG, ExecutionEngine
def test_execution_engine_basic_flow():
# Setup tickets with dependencies
def test_execution_engine_basic_flow() -> None:
t1 = Ticket(id="T1", description="Task 1", status="todo", assigned_to="worker")
t2 = Ticket(id="T2", description="Task 2", status="todo", assigned_to="worker", depends_on=["T1"])
t3 = Ticket(id="T3", description="Task 3", status="todo", assigned_to="worker", depends_on=["T1"])