Get status of running tests. Returns: Dictionary with test run status
(self)
| 60 | return self._conn.send_request("tests", {"action": "list", "mode": mode}) |
| 61 | |
| 62 | def status(self) -> dict[str, Any]: |
| 63 | """Get status of running tests. |
| 64 | |
| 65 | Returns: |
| 66 | Dictionary with test run status |
| 67 | """ |
| 68 | return self._conn.send_request("tests", {"action": "status"}) |
no test coverage detected