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