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):
38793879 _obj_cls = ProjectPipelineVariable
38803880 _from_parent_attrs = {"project_id" : "project_id" , "pipeline_id" : "id" }
38813881
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" }
38823889
38833890class ProjectPipeline (RESTObject , RefreshMixin , ObjectDeleteMixin ):
38843891 _managers = (
38853892 ("jobs" , "ProjectPipelineJobManager" ),
38863893 ("bridges" , "ProjectPipelineBridgeManager" ),
38873894 ("variables" , "ProjectPipelineVariableManager" ),
3895+ ("test_report" , "ProjectPipelineTestReportManager" )
38883896 )
38893897
38903898 @cli .register_custom_action ("ProjectPipeline" )
You can’t perform that action at this time.
0 commit comments