(self)
| 1200 | self._cleanup_stack.callback(func) |
| 1201 | |
| 1202 | def _do_configure(self) -> None: |
| 1203 | assert not self._configured |
| 1204 | self._configured = True |
| 1205 | self.hook.pytest_configure.call_historic(kwargs=dict(config=self)) |
| 1206 | |
| 1207 | def _ensure_unconfigure(self) -> None: |
| 1208 | try: |
no outgoing calls