Conversation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Test Failure Analysis
Summary: The Root Cause: In the docket main branch (>=0.18.0), the # docket main — simplified
from uncalled_for import Dependency as Dependency
current_execution: ContextVar[Execution] = ContextVar("current_execution")
Dependency.execution = current_execution # type: ignore[attr-defined] <- runtime patchBecause
Suggested Solution: Replace # Instead of:
from docket.dependencies import Dependency
execution = Dependency.execution.get()
# Use:
from docket.dependencies import current_execution
execution = current_execution.get()Apply in both files, and remove the now-unnecessary Note: The Detailed AnalysisFailing step:
|
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Just pointing docket at its main branch to run the full test suite against the latest docket changes. Draft PR, no intent to merge as-is.
🤖 Generated with Claude Code