Skip to content

Commit

Permalink
fix: pass flag_name to coveralls API (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
joscha authored and nickmerwin committed Nov 21, 2019
1 parent 06459ae commit 571b38a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/convertLcovToCoveralls.js
Expand Up @@ -64,6 +64,10 @@ const convertLcovToCoveralls = (input, options, cb) => {
source_files: []
};

if (options.flag_name) {
postJson.flag_name = options.flag_name;
}

if (options.git) {
postJson.git = options.git;
}
Expand Down

0 comments on commit 571b38a

Please sign in to comment.