(self, **kwargs)
| 1041 | return pipeline.pipelineruns.defer("log") |
| 1042 | |
| 1043 | def get_context_data(self, **kwargs): |
| 1044 | context = super().get_context_data(**kwargs) |
| 1045 | pipeline = get_object_or_404( |
| 1046 | PipelineSchedule, |
| 1047 | pipeline_id=self.kwargs["pipeline_id"], |
| 1048 | ) |
| 1049 | context["pipeline_name"] = pipeline.pipeline_class.__name__ |
| 1050 | context["pipeline_description"] = pipeline.description |
| 1051 | return context |
| 1052 | |
| 1053 | |
| 1054 | class PipelineRunDetailView(VulnerableCodeDetailView): |
nothing calls this directly
no test coverage detected