()
| 82 | # NOTE: not using pytest_unconfigure, since it might get called although |
| 83 | # pytest_configure was not (if another plugin raises UsageError). |
| 84 | def fin() -> None: |
| 85 | ( |
| 86 | pdb.set_trace, |
| 87 | pytestPDB._pluginmanager, |
| 88 | pytestPDB._config, |
| 89 | ) = pytestPDB._saved.pop() |
| 90 | |
| 91 | config.add_cleanup(fin) |
| 92 |
no test coverage detected