aboutsummaryrefslogtreecommitdiff
path: root/lib/convertLcovToCoveralls.js
diff options
context:
space:
mode:
authorJosh Callender <[email protected]>2015-04-24 12:00:41 -0700
committerJosh Callender <[email protected]>2015-04-24 12:00:41 -0700
commit45ef2a5508ed4485a0ee15354dcb1e3829fa9a6e (patch)
treeaf10547c9ef996049671033a443f0eddfdaa2b2c /lib/convertLcovToCoveralls.js
parentd5e1372bbd79a9fabbceec9624a220f1a8f75348 (diff)
downloadnode-coveralls-45ef2a5508ed4485a0ee15354dcb1e3829fa9a6e.tar.xz
node-coveralls-45ef2a5508ed4485a0ee15354dcb1e3829fa9a6e.zip
add support for CircleCI pull request commenting
Diffstat (limited to 'lib/convertLcovToCoveralls.js')
-rw-r--r--lib/convertLcovToCoveralls.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/convertLcovToCoveralls.js b/lib/convertLcovToCoveralls.js
index 3f604e1..394ab9e 100644
--- a/lib/convertLcovToCoveralls.js
+++ b/lib/convertLcovToCoveralls.js
@@ -48,6 +48,9 @@ var convertLcovToCoveralls = function(input, options, cb){
if (options.service_job_id){
postJson.service_job_id = options.service_job_id;
}
+ if (options.service_pull_request) {
+ postJson.service_pull_request = options.service_pull_request;
+ }
if (options.repo_token) {
postJson.repo_token = options.repo_token;
}