Replace coveralls with codeclimate coverage by means of codeclimate-test-reporter
This commit is contained in:
parent
bdf4edb138
commit
15da6c14da
|
@ -1,5 +1,8 @@
|
|||
sudo: false
|
||||
language: node_js
|
||||
addons:
|
||||
code_climate:
|
||||
repo_token: tanxchangeme!46ecd492907f8224b0ae64890d4befb4bbd9ebbeba55b5acb38
|
||||
matrix:
|
||||
fast_finish: true
|
||||
include:
|
||||
|
@ -52,6 +55,6 @@ matrix:
|
|||
- env: OPENPGPJSTEST='end2end-12' BROWSER='iphone 7.0'
|
||||
- env: OPENPGPJSTEST='end2end-13' BROWSER='iphone 9.1'
|
||||
before_script:
|
||||
- npm install -g grunt-cli
|
||||
- npm install -g grunt-cli codeclimate-test-reporter
|
||||
script:
|
||||
- $TRAVIS_BUILD_DIR/travis.sh
|
||||
|
|
19
Gruntfile.js
19
Gruntfile.js
|
@ -136,15 +136,6 @@ module.exports = function(grunt) {
|
|||
root: '.',
|
||||
timeout: 240000,
|
||||
}
|
||||
},
|
||||
coveralls: {
|
||||
src: ['test'],
|
||||
options: {
|
||||
root: '.',
|
||||
timeout: 240000,
|
||||
coverage: true,
|
||||
reportFormats: ['cobertura','lcovonly']
|
||||
}
|
||||
}
|
||||
},
|
||||
mochaTest: {
|
||||
|
@ -254,18 +245,8 @@ module.exports = function(grunt) {
|
|||
|
||||
grunt.registerTask('documentation', ['jsdoc']);
|
||||
|
||||
grunt.event.on('coverage', function(lcov, done){
|
||||
require('coveralls').handleInput(lcov, function(err){
|
||||
if (err) {
|
||||
return done(err);
|
||||
}
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
// Test/Dev tasks
|
||||
grunt.registerTask('test', ['jshint:build', 'jscs:build', 'copy:zlib', 'mochaTest']);
|
||||
grunt.registerTask('coverage', ['copy:zlib', 'mocha_istanbul:coverage']);
|
||||
grunt.registerTask('coveralls', ['copy:zlib', 'mocha_istanbul:coveralls']);
|
||||
grunt.registerTask('saucelabs', ['default', 'copy:browsertest', 'connect', 'saucelabs-mocha']);
|
||||
};
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"chai": "~3.4.1",
|
||||
"coveralls": "^2.11.2",
|
||||
"grunt": "~0.4.5",
|
||||
"grunt-browserify": "~4.0.1",
|
||||
"grunt-contrib-clean": "~0.7.0",
|
||||
|
|
Loading…
Reference in New Issue
Block a user