Parse raw build logs into structured format.
(self)
| 842 | return f"<Deployment {self.id}>" |
| 843 | |
| 844 | def parse_logs(self): |
| 845 | """Parse raw build logs into structured format.""" |
| 846 | if not self.build_logs: |
| 847 | return [] |
| 848 | |
| 849 | return [parse_log(log) for log in self.build_logs.splitlines()] |
| 850 | |
| 851 | @property |
| 852 | def parsed_logs(self): |
no test coverage detected