Skip to content

Commit

Permalink
Fix coveralls support
Browse files Browse the repository at this point in the history
  • Loading branch information
jcsirot committed Oct 14, 2014
1 parent 2d48f5b commit b47ad61
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_js:
- "0.10"
before_install: npm install -g grunt-cli
install: npm install
after_success: grunt coveralls
8 changes: 5 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ module.exports = function(grunt) {
}
},
coveralls: {
options: {
all:{
src: 'reports/coverage/lcov/lcov.info',
force: false
options: {
force: false
}
}
},
jshint: {
Expand Down Expand Up @@ -69,7 +71,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-release');

// Test task(s).
grunt.registerTask('test', ['jshint', 'jasmine', 'coveralls']);
grunt.registerTask('test', ['clean', 'jshint', 'jasmine']);
// Default task(s).
grunt.registerTask('default', ['jshint', 'jasmine', 'uglify']);

Expand Down

0 comments on commit b47ad61

Please sign in to comment.