Off 模式: 不做任何隔离
| 807 | ... |
| 808 | |
| 809 | class NoIsolation(IsolationStrategy): |
| 810 | """Off 模式: 不做任何隔离""" |
| 811 | def check_path(self, path): return True |
| 812 | def name(self): return "Off" |
| 813 | |
| 814 | class WorkspaceOnly(IsolationStrategy): |
| 815 | """WorkspaceOnly 模式: 只允许访问工作区""" |
no outgoing calls
no test coverage detected