(example: str)
| 262 | |
| 263 | |
| 264 | def resolve_example_path(example: str) -> Path: |
| 265 | example_path = HERE.parent / "examples" / example |
| 266 | if not example_path.exists(): |
| 267 | raise FileNotFoundError(f"Example '{example}' not found at '{example_path}'") |
| 268 | return example_path |
| 269 | |
| 270 | |
| 271 | def compile_with_pio_ci( |