| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2017-02-05 | branching WIPbranching | Nick Merwin | 1 | -0/+29 | |
| 2016-11-11 | implemented code to parse concatenated file paths (fixes #143) | Joshua Davis | 1 | -3/+2 | |
| 2016-11-11 | added sample .lcov and test fixture for Issue #143 | Joshua Davis | 1 | -0/+30 | |
| 2016-09-15 | test use empty() | Nick Merwin | 1 | -1/+1 | |
| 2016-09-15 | Merge branch 'master' into pr/127 | Nick Merwin | 2 | -8/+34 | |
| 2016-09-15 | Merge branch 'master' of github.com:nickmerwin/node-coveralls | Nick Merwin | 1 | -3/+29 | |
| 2016-09-15 | Merge pull request #139 from paulcbetts/surf | Nick Merwin | 1 | -0/+23 | |
| Add Surf support | |||||
| 2016-09-14 | Ignore files that do not exist in convertLcovToCoveralls | Arjan Singh | 1 | -0/+34 | |
| 2016-08-17 | I am a dum | Paul Betts | 1 | -1/+4 | |
| 2016-08-17 | Add a test | Paul Betts | 1 | -0/+20 | |
| 2016-07-12 | Update CI, vulnerability checking, and dependencies. | Adam Moss | 2 | -5/+5 | |
| 2016-06-26 | Feature: Support codeship docker environment variables | Marc Riegel | 1 | -3/+6 | |
| 2016-02-26 | COVERALLS_PARALLEL env support | Nick Merwin | 2 | -1/+14 | |
| 2016-02-26 | added gitlab-ci support | Nick Merwin | 1 | -0/+25 | |
| 2015-12-10 | Modify tests to use the minimist options object for filepath detection | Anna Henningsen | 1 | -3/+3 | |
| 2015-12-10 | Modify tests to reflect minimist usage | Anna Henningsen | 2 | -6/+7 | |
| The tests now modify the options object directly instead of modifying `process.argv` To allow using this tool with Coveralls Enterprise, I've added support in `sendToCoveralls` to read the host from a `COVERALLS_ENDPOINT` environment variable (if it exists), else default to coveralls.io (as before). | |||||
| 2015-12-10 | Remove unneccessary 'streams' require() in test case | Anna Henningsen | 1 | -1/+0 | |
| 2015-12-10 | Add command line option to write output to stdout | Anna Henningsen | 1 | -2/+23 | |
| Adds the command line option pair -w/--write. These options indicate that the output should be written to standard output, rather than being posted to coveralls.io, which may be useful for debugging, mixed-language codebases (e.g. node addons with C++ code) etc. | |||||
| 2015-12-10 | merge conflict | Nick Merwin | 1 | -0/+2 | |
| 2015-12-10 | Merge pull request #76 from jacob-meacham/feature/user-options | Nick Merwin | 1 | -0/+8 | |
| allow users to pass options through. | |||||
| 2015-08-12 | Added support for process.env.COVERALLS_ENDPOINT | Adam Meadows | 1 | -2/+29 | |
| To allow using this tool with Coveralls Enterprise, I've added support in `sendToCoveralls` to read the host from a `COVERALLS_ENDPOINT` environment variable (if it exists), else default to coveralls.io (as before). | |||||
| 2015-07-14 | Pass CI_PULL_REQUEST through to coveralls if it is set | Ethan Langevin | 2 | -0/+13 | |
| 2015-04-24 | CI_PULL_REQUEST is just the url for the entire PR, have to split it and | Josh Callender | 1 | -1/+1 | |
| grab the number there. CIRCLE_PR_NUMBER is only defined for forks. | |||||
| 2015-04-24 | add support for CircleCI pull request commenting | Josh Callender | 1 | -0/+2 | |
| 2015-01-29 | allow users to pass options through. | Jacob Meacham | 1 | -0/+8 | |
| 2014-11-04 | Add Wercker CI support with tests. | Steven Weathers | 1 | -0/+27 | |
| Fix minor lint error where a second semicolon appears in lib/fetchGitData.js | |||||
| 2014-07-03 | log at error level by default and only show others if --verbose switch is on. | Gregg Caines | 2 | -6/+10 | |
| 2014-05-24 | fix missing semi-colon in test file. | Gregg Caines | 1 | -1/+1 | |
| 2014-03-14 | convertLcovToCoveralls should convert absolute source paths to relative ↵ | Marc Knaup | 1 | -6/+32 | |
| paths in output. | |||||
| 2014-02-16 | add support for drone ci | deepak1556 | 1 | -0/+27 | |
| 2014-02-12 | Fix tests again | Gerard Escalante | 1 | -2/+2 | |
| Make sure to add "fix" to all places where process.env is wiped clear, because of some node 0.8 oddity | |||||
| 2014-02-12 | Fix fetchGitData tests | Gerard Escalante | 1 | -0/+3 | |
| Restored process.env "cleanup", but make sure to preserve PATH so Windows doesn't freak out trying to find git | |||||
| 2014-02-11 | Read service_name from coveralls.yml | Gerard Escalante | 1 | -3/+11 | |
| Also fixed a typo from the last commit. | |||||
| 2014-02-11 | Swap out yaml with js-yaml for Win compat | Gerard Escalante | 1 | -3/+2 | |
| 2014-02-11 | Windows compat fixes | Gerard Escalante | 2 | -5/+2 | |
| Changed usage of '/' as root dir. Stopped tests from wiping out environment. | |||||
| 2014-01-31 | Fixing existsSync issues for older versions of node | Jonathan Kingston | 1 | -1/+2 | |
| 2014-01-26 | Add callback to handleInput() for easier use in other projects | Patrick Gansterer | 1 | -24/+47 | |
| Since handleInput works completely asynchronous it is necessary to provide a callback function for signaling finished operation. This allows other project to call the handleInput function. | |||||
| 2013-12-05 | Added ability to turn on debug logging via environment variable | mattjmorrison | 1 | -0/+21 | |
| For the grunt-karma-coveralls project, I need to be able to turn on debug level logging but without using `process.argv`. This will allow me to do so. This addresses this issue: https://github.com/mattjmorrison/grunt-karma-coveralls/issues/2 and can be fixed with this commit: https://github.com/mattjmorrison/grunt-karma-coveralls/commit/4bd6e2b58647dda4a6335fa6077334d8021e23c0 | |||||
| 2013-11-15 | OK so Travis behaves WEIRDLY on writeFileSync with explicit utf8, let's try ↵ | Christophe Porteneuve | 1 | -1/+1 | |
| with implicit | |||||
| 2013-11-15 | Fixed encoding from utf-8 to utf8 for Travis | Christophe Porteneuve | 1 | -10/+10 | |
| 2013-11-15 | Final fixes for detached head mode (93% cov against 94% cov in branch mode) | Christophe Porteneuve | 1 | -2/+2 | |
| 2013-11-15 | Stupid typo… | Christophe Porteneuve | 1 | -1/+1 | |
| 2013-11-15 | More regular-case detached head (e.g. Travis) fixes | Christophe Porteneuve | 1 | -1/+4 | |
| 2013-11-15 | Fix getOptions test for regular-case detached head state (e.g. Travis) | Christophe Porteneuve | 1 | -5/+6 | |
| 2013-11-14 | Massive expansion of test coverage: 100% of detectLocalGit + numerous ↵ | Christophe Porteneuve | 2 | -0/+193 | |
| missing lines in other files | |||||
| 2013-09-06 | Added getBaseOptions export to index.js | Matthew J. Morrison | 1 | -3/+3 | |
| 2013-09-06 | export both getOptions and getBaseOptions from getOptions.js | Matthew J. Morrison | 1 | -69/+133 | |
| Also updated index.js to prevent any breaking API changes and added tests around both getOptions and getBaseOptions. | |||||
| 2013-08-24 | removed exec-sync. version 2.2.0 candidate | Gregg Caines | 4 | -159/+206 | |
| 2013-07-30 | fixed test | Gabe Hayes | 1 | -1/+1 | |
| 2013-07-30 | fixed test | Gabe Hayes | 1 | -3/+0 | |
