| 115 | after: list[str] | None = None |
| 116 | |
| 117 | class Plugin: |
| 118 | @pytest.hookimpl(tryfirst=True) |
| 119 | def pytest_unconfigure(self) -> None: |
| 120 | nonlocal before |
| 121 | before = sys.path.copy() |
| 122 | |
| 123 | result = pytester.runpytest_inprocess(plugins=[Plugin()]) |
| 124 | after = sys.path.copy() |
no outgoing calls