(self)
| 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) |
no outgoing calls
no test coverage detected