(request)
| 180 | |
| 181 | @pytest.fixture(autouse=True) |
| 182 | def threads_not_lingering(request): |
| 183 | yield |
| 184 | assert request.session._threads_at_startup == alive_threads() |
| 185 | |
| 186 | |
| 187 | @pytest.fixture(autouse=True) |
nothing calls this directly
no test coverage detected