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):
38803880 _from_parent_attrs = {"project_id" : "project_id" , "pipeline_id" : "id" }
38813881
38823882
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+
38833893class ProjectPipeline (RESTObject , RefreshMixin , ObjectDeleteMixin ):
38843894 _managers = (
38853895 ("jobs" , "ProjectPipelineJobManager" ),
38863896 ("bridges" , "ProjectPipelineBridgeManager" ),
38873897 ("variables" , "ProjectPipelineVariableManager" ),
3898+ ("test_report" , "ProjectPipelineTestReportManager" )
38883899 )
38893900
38903901 @cli .register_custom_action ("ProjectPipeline" )
You can’t perform that action at this time.
0 commit comments