(build: Path)
| 18 | |
| 19 | |
| 20 | def _check_build(build: Path) -> bool: |
| 21 | # 1. should contain a build_info.json file |
| 22 | # 2. should contain a .pio/build directory |
| 23 | has_build_info = (build / "build_info.json").exists() |
| 24 | has_pio_build = (build / ".pio" / "build").exists() |
| 25 | return has_build_info and has_pio_build |
| 26 | |
| 27 | |
| 28 | def _prompt_build() -> Path: |
no outgoing calls
no test coverage detected