Skip to content

Commit

Permalink
Fix: Code coverage not working
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Roth <christian.roth@port17.de>
  • Loading branch information
cr0 committed Jun 17, 2013
1 parent 6555ec2 commit a3b8e33
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ module.exports = (grunt) ->
]

grunt.registerTask 'test', [
'mochacov:test'
'clean:server', 'coffee:server', 'mochacov:test'
]

grunt.registerTask 'travis', [
'mochacov:coverage'
'clean:server', 'coffee:server', 'mochacov:coverage'
]

grunt.registerTask 'server', [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# node-galerie [![Build Status](https://travis-ci.org/cr0/node-galerie.png?branch=master)](https://travis-ci.org/cr0/node-galerie)
# node-galerie [![Build Status](https://travis-ci.org/cr0/node-galerie.png?branch=master)](https://travis-ci.org/cr0/node-galerie) [![Coverage Status](https://coveralls.io/repos/cr0/node-galerie/badge.png)](https://coveralls.io/r/cr0/node-galerie) [![Dependency Status](https://gemnasium.com/cr0/node-galerie.png)](https://gemnasium.com/cr0/node-galerie)
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
"scripts": {
"install": "grunt build",
"start": "npm start",
"test": "grunt test"
"test": "grunt test",
"blanket": {
"pattern": [
"app"
]
}
},
"repository": {
"type": "git",
Expand Down

0 comments on commit a3b8e33

Please sign in to comment.