Get list of missing required files.
(self)
| 73 | ) |
| 74 | |
| 75 | def missing_files(self) -> list[str]: |
| 76 | """Get list of missing required files.""" |
| 77 | missing: list[str] = [] |
| 78 | if not self.firmware: |
| 79 | missing.append("firmware.bin") |
| 80 | if not self.bootloader: |
| 81 | missing.append("bootloader.bin") |
| 82 | if not self.partitions_bin and not self.partitions_csv: |
| 83 | missing.append("partitions.bin or partitions.csv") |
| 84 | return missing |
| 85 | |
| 86 | |
| 87 | class ESP32ArtifactDiscovery: |
no test coverage detected