(path: Path, extra: dict | None = None)
| 47 | |
| 48 | |
| 49 | def _write_project(path: Path, extra: dict | None = None) -> Path: |
| 50 | path.write_text(json.dumps(_base_project(extra), indent=2), encoding="utf-8") |
| 51 | return path |
| 52 | |
| 53 | |
| 54 | def _connect_and_send(api_client, device_simulator): |
no test coverage detected