mirror of
https://github.com/bower/bower.git
synced 2026-04-24 03:00:19 -04:00
Tolerate failure in covealls reporting
This commit is contained in:
@@ -66,7 +66,8 @@ module.exports = function (grunt) {
|
||||
command: 'node node_modules/istanbul/lib/cli.js cover --dir ./test/reports node_modules/mocha/bin/_mocha -- --timeout 30000 -R dot test/test.js'
|
||||
},
|
||||
coveralls: {
|
||||
command: 'npm run coveralls < test/reports/lcov.info'
|
||||
command: 'npm run coveralls < test/reports/lcov.info',
|
||||
exitCodes: [0,1,2,3] // Alow for failure for coverage report
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
||||
Reference in New Issue
Block a user