Parsed command-line arguments for autoresearch test runner.
| 8 | |
| 9 | @dataclass |
| 10 | class Args: |
| 11 | """Parsed command-line arguments for autoresearch test runner.""" |
| 12 | |
| 13 | # Positional argument |
| 14 | environment_positional: str | None |
| 15 | |
| 16 | # Driver selection flags |
| 17 | parlio: bool |
| 18 | rmt: bool |
| 19 | spi: bool |
| 20 | uart: bool |
| 21 | lcd: bool |
| 22 | lcd_spi: bool |
| 23 | lcd_rgb: bool |
| 24 | object_fled: bool |
| 25 | flex_io: bool |
| 26 | lpuart: bool |
| 27 | all: bool |
| 28 | simd: bool |
| 29 | coroutine: bool |
| 30 | |
| 31 | # Standard options |
| 32 | environment: str | None |
| 33 | verbose: bool |
| 34 | skip_lint: bool |
| 35 | upload_port: str | None |
| 36 | timeout: str |
| 37 | project_dir: Path |
| 38 | |
| 39 | # Pattern overrides |
| 40 | no_expect: bool |
| 41 | no_fail_on: bool |
| 42 | expect_keywords: list[str] | None |
| 43 | fail_keywords: list[str] | None |
| 44 | |
| 45 | # Pin configuration |
| 46 | tx_pin: int | None |
| 47 | rx_pin: int | None |
| 48 | auto_discover_pins: bool |
| 49 | |
| 50 | # Build system selection |
| 51 | use_fbuild: bool |
| 52 | no_fbuild: bool |
| 53 | clean: bool |
| 54 | skip_schema: bool |
| 55 | quiet: bool |
| 56 | |
| 57 | # Strip size configuration |
| 58 | strip_sizes: str | None |
| 59 | |
| 60 | # Lane configuration |
| 61 | lanes: str | None |
| 62 | |
| 63 | # Per-lane LED counts |
| 64 | lane_counts: str | None |
| 65 | |
| 66 | # Color pattern |
| 67 | color_pattern: str | None |
no outgoing calls