MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / _FakeRun

Class _FakeRun

tests/workflow/test_local_workflow.py:31–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29
30
31class _FakeRun:
32 def __init__(self):
33 self.controller = _FakeController()
34 self.skipped = []
35 self.retried = []
36
37 def abort_agent(self, key):
38 self.skipped.append(key)
39 return key == "0"
40
41 def retry_agent(self, key):
42 self.retried.append(key)
43 return key == "0"
44
45
46def _register(registry, run=None, progress=None):

Callers 5

_registerFunction · 0.70
test_kill_aborts_the_runFunction · 0.70
test_task_adapter_killFunction · 0.70

Calls

no outgoing calls

Tested by 5

_registerFunction · 0.56
test_kill_aborts_the_runFunction · 0.56
test_task_adapter_killFunction · 0.56