(target_os, options)
| 130 | |
| 131 | @contextmanager |
| 132 | def os_context(target_os, options): |
| 133 | factory = find_os_context_factory(target_os) |
| 134 | context_instance = factory() |
| 135 | with context_instance.handle_context(options): |
| 136 | yield context_instance |
no test coverage detected