()
| 16 | |
| 17 | @pytest.fixture(autouse=True) |
| 18 | def setup() -> Generator[None, None, None]: |
| 19 | pendulum.travel_back() |
| 20 | |
| 21 | yield |
| 22 | |
| 23 | pendulum.travel_back() |
| 24 | |
| 25 | |
| 26 | @pytest.mark.skipif(PYPY, reason="Time travelling not available on PyPy") |
nothing calls this directly
no test coverage detected