(
platform: str,
simulator: str | None,
args: list[str],
verbose: bool = False,
)
| 261 | |
| 262 | |
| 263 | def run_testbed( |
| 264 | platform: str, |
| 265 | simulator: str | None, |
| 266 | args: list[str], |
| 267 | verbose: bool = False, |
| 268 | ): |
| 269 | location = Path(__file__).parent |
| 270 | print("Updating test plan...", end="") |
| 271 | update_test_plan(location, platform, args) |
| 272 | print(" done.") |
| 273 | |
| 274 | if simulator is None: |
| 275 | simulator = select_simulator_device(platform) |
| 276 | print(f"Running test on {simulator}") |
| 277 | |
| 278 | xcode_test( |
| 279 | location, |
| 280 | platform=platform, |
| 281 | simulator=simulator, |
| 282 | verbose=verbose, |
| 283 | ) |
| 284 | |
| 285 | |
| 286 | def main(): |
no test coverage detected
searching dependent graphs…