MCPcopy Create free account
hub / github.com/Louisym/MiniCC / WorkspaceSetup

Class WorkspaceSetup

src/setup.py:13–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11
12@dataclass(frozen=True)
13class WorkspaceSetup:
14 python_version: str
15 implementation: str
16 platform_name: str
17 test_command: str = 'python3 -m unittest discover -s tests -v'
18
19 def startup_steps(self) -> tuple[str, ...]:
20 return (
21 'start top-level prefetch side effects',
22 'build workspace context',
23 'load mirrored command snapshot',
24 'load mirrored tool snapshot',
25 'prepare parity audit hooks',
26 'apply trust-gated deferred init',
27 )
28
29
30@dataclass(frozen=True)

Callers 1

build_workspace_setupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected