(build: Path)
| 59 | |
| 60 | |
| 61 | def _check_build(build: Path) -> bool: |
| 62 | # 1. should contain a build_info.json file |
| 63 | # 2. should contain a .pio/build directory |
| 64 | has_build_info = (build / "build_info.json").exists() |
| 65 | has_pio_build = (build / ".pio" / "build").exists() |
| 66 | return has_build_info and has_pio_build |
| 67 | |
| 68 | |
| 69 | def _prompt_build() -> Path: |
no outgoing calls
no test coverage detected