(run_id: int)
| 800 | |
| 801 | |
| 802 | def get_selfcheck_run(run_id: int) -> Optional[Dict[str, Any]]: |
| 803 | with get_db() as db: |
| 804 | run = db.query(SelfCheckRun).filter(SelfCheckRun.id == int(run_id)).first() |
| 805 | return _serialize_run(run) if run else None |
| 806 | |
| 807 | |
| 808 | def _repair_clear_overview_cache() -> Dict[str, Any]: |
no test coverage detected