summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-11-25 16:51:53 +0000
committerRémy Coutable <remy@rymai.me>2016-11-25 16:51:53 +0000
commite17328986abcaabff47edb6292ede7546f607bb2 (patch)
treea87a93a0d65a48a3724dc41cd8e9c161e77e728b /doc/api
parent746b6ec82d1ed29a679fe4dc6a93b2d0228e9d34 (diff)
parent752d72f87635c1f43f3334d7e2dd96ab77eeba7d (diff)
downloadgitlab-ce-e17328986abcaabff47edb6292ede7546f607bb2.tar.gz
Merge branch 'zj-expose-coverage-pipelines' into 'master'
Expose coverage on GET pipelines/:id Closes gitlab-org/gitlab-ce#24801 See merge request !7670
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/pipelines.md18
1 files changed, 12 insertions, 6 deletions
diff --git a/doc/api/pipelines.md b/doc/api/pipelines.md
index 6455c333faf..82351ae688f 100644
--- a/doc/api/pipelines.md
+++ b/doc/api/pipelines.md
@@ -41,7 +41,8 @@ Example of response
"started_at": null,
"finished_at": null,
"committed_at": null,
- "duration": null
+ "duration": null,
+ "coverage": "30.0"
},
{
"id": 48,
@@ -64,7 +65,8 @@ Example of response
"started_at": null,
"finished_at": null,
"committed_at": null,
- "duration": null
+ "duration": null,
+ "coverage": null
}
]
```
@@ -110,7 +112,8 @@ Example of response
"started_at": null,
"finished_at": "2016-08-11T11:32:35.145Z",
"committed_at": null,
- "duration": null
+ "duration": null,
+ "coverage": "30.0"
}
```
@@ -155,7 +158,8 @@ Example of response
"started_at": null,
"finished_at": null,
"committed_at": null,
- "duration": null
+ "duration": null,
+ "coverage": null
}
```
@@ -200,7 +204,8 @@ Response:
"started_at": null,
"finished_at": "2016-08-11T11:32:35.145Z",
"committed_at": null,
- "duration": null
+ "duration": null,
+ "coverage": null
}
```
@@ -245,7 +250,8 @@ Response:
"started_at": null,
"finished_at": "2016-08-11T11:32:35.145Z",
"committed_at": null,
- "duration": null
+ "duration": null,
+ "coverage": null
}
```