(request)
| 172 | |
| 173 | @pytest.fixture(scope='session', autouse=True) |
| 174 | def record_threads_at_startup(request): |
| 175 | try: |
| 176 | request.session._threads_at_startup |
| 177 | except AttributeError: |
| 178 | request.session._threads_at_startup = alive_threads() |
| 179 | |
| 180 | |
| 181 | @pytest.fixture(autouse=True) |
nothing calls this directly
no test coverage detected