| 53 | |
| 54 | |
| 55 | class FirmwareBundle(object): |
| 56 | |
| 57 | def get_firmware_list(self): |
| 58 | """Return the firmware objects associated with this bundle""" |
| 59 | raise NotImplementedError() |
| 60 | |
| 61 | @property |
| 62 | def build_sha(self): |
| 63 | """The GIT SHA this build was created at as a string or None""" |
| 64 | raise NotImplementedError() |
| 65 | |
| 66 | @property |
| 67 | def build_local_mods(self): |
| 68 | """True if this was a clean build, False otherwise""" |
| 69 | raise NotImplementedError() |
| 70 | |
| 71 | |
| 72 | class ReleaseFirmwareBundle(FirmwareBundle): |
nothing calls this directly
no outgoing calls
no test coverage detected