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