Make sure all tests start with a clean slate.
()
| 40 | |
| 41 | @pytest.fixture(autouse=True) |
| 42 | def _clear_threadlocal(): |
| 43 | """ |
| 44 | Make sure all tests start with a clean slate. |
| 45 | """ |
| 46 | with pytest.deprecated_call(): |
| 47 | clear_threadlocal() |
| 48 | |
| 49 | |
| 50 | @pytest.fixture(name="D") |
nothing calls this directly
no test coverage detected
searching dependent graphs…