(fake_redis: MagicMock)
| 30 | |
| 31 | @pytest.fixture |
| 32 | def github_env(fake_redis: MagicMock) -> Iterator[None]: |
| 33 | with mock.patch.object(github, 'r', fake_redis): |
| 34 | yield |
| 35 | |
| 36 | |
| 37 | def _resp(status_code: int = 200, json_data: Any = None) -> MagicMock: |
nothing calls this directly
no outgoing calls
no test coverage detected