MCPcopy Create free account
hub / github.com/bigdra50/unity-cli / list

Method list

unity_cli/api/tests.py:51–60  ·  view source on GitHub ↗

List available tests. Args: mode: Test mode - "edit" or "play" Returns: Dictionary with available tests

(self, mode: str = "edit")

Source from the content-addressed store, hash-verified

49 return self._conn.send_request("tests", params)
50
51 def list(self, mode: str = "edit") -> dict[str, Any]:
52 """List available tests.
53
54 Args:
55 mode: Test mode - "edit" or "play"
56
57 Returns:
58 Dictionary with available tests
59 """
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.

Callers

nothing calls this directly

Calls 1

send_requestMethod · 0.80

Tested by

no test coverage detected