(timeout: float = 8.0)
| 885 | |
| 886 | |
| 887 | def wait_for_remote_reachable(timeout: float = 8.0) -> bool: |
| 888 | def _remote_ok() -> bool: |
| 889 | status = collect_status() |
| 890 | return bool(status["summary"]["remote_reachable"]) |
| 891 | |
| 892 | return wait_for(_remote_ok, timeout=timeout, interval=1.0) |
| 893 | |
| 894 | |
| 895 | def perform_action(action: str) -> str: |
no test coverage detected