File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -3880,11 +3880,22 @@ class ProjectPipelineVariableManager(ListMixin, RESTManager):
3880
3880
_from_parent_attrs = {"project_id" : "project_id" , "pipeline_id" : "id" }
3881
3881
3882
3882
3883
+ class ProjectPipelineTestReport (RESTObject ):
3884
+ _id_attr = None
3885
+
3886
+
3887
+ class ProjectPipelineTestReportManager (GetWithoutIdMixin , RESTManager ):
3888
+ _path = "/projects/%(project_id)s/pipelines/%(pipeline_id)s/test_report"
3889
+ _obj_cls = ProjectPipelineTestReport
3890
+ _from_parent_attrs = {"project_id" : "project_id" , "pipeline_id" : "id" }
3891
+
3892
+
3883
3893
class ProjectPipeline (RESTObject , RefreshMixin , ObjectDeleteMixin ):
3884
3894
_managers = (
3885
3895
("jobs" , "ProjectPipelineJobManager" ),
3886
3896
("bridges" , "ProjectPipelineBridgeManager" ),
3887
3897
("variables" , "ProjectPipelineVariableManager" ),
3898
+ ("test_report" , "ProjectPipelineTestReportManager" )
3888
3899
)
3889
3900
3890
3901
@cli .register_custom_action ("ProjectPipeline" )
You can’t perform that action at this time.
0 commit comments