Set the lane count range for test matrix generation. Args: min_lanes: Minimum number of lanes to test max_lanes: Maximum number of lanes to test Returns: Response dict with minLanes, maxLanes, testCases
(self, min_lanes: int, max_lanes: int)
| 285 | return self.send_rpc("setStripSizeValues", [short, long]) |
| 286 | |
| 287 | def set_lane_range(self, min_lanes: int, max_lanes: int) -> dict[str, Any]: |
| 288 | """Set the lane count range for test matrix generation. |
| 289 | |
| 290 | Args: |
| 291 | min_lanes: Minimum number of lanes to test |
| 292 | max_lanes: Maximum number of lanes to test |
| 293 | |
| 294 | Returns: |
| 295 | Response dict with minLanes, maxLanes, testCases |
| 296 | """ |
| 297 | return self.send_rpc("setLaneRange", [min_lanes, max_lanes]) |
| 298 | |
| 299 | def set_strip_sizes_enabled( |
| 300 | self, small: bool = True, large: bool = False |