Skip to content

Commit

Permalink
Add coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Jul 7, 2016
1 parent 6a806db commit e34d711
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -25,6 +25,7 @@ _docpress
############################
testApp
coverage
.nyc_output

############################
# Other
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -14,6 +14,7 @@ env:
- GITHUB_REPO: Kikobeats/osom
- GIT_SOURCE: _docpress

after_success: npm run coveralls
after_script:
- |
declare exitCode;
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -6,6 +6,7 @@
![Last version](https://img.shields.io/github/tag/Kikobeats/osom.svg?style=flat-square)
[![Build Status](https://img.shields.io/travis/Kikobeats/osom/master.svg?style=flat-square)](https://travis-ci.org/Kikobeats/osom)
[![Coverage Status](https://img.shields.io/coveralls/Kikobeats/osom.svg?style=flat-square)](https://coveralls.io/github/Kikobeats/osom)
[![Dependency status](https://img.shields.io/david/Kikobeats/osom.svg?style=flat-square)](https://david-dm.org/Kikobeats/osom)
[![Dev Dependencies Status](https://img.shields.io/david/dev/Kikobeats/osom.svg?style=flat-square)](https://david-dm.org/Kikobeats/osom#info=devDependencies)
[![NPM Status](https://img.shields.io/npm/dm/osom.svg?style=flat-square)](https://www.npmjs.org/package/osom)
Expand Down
7 changes: 5 additions & 2 deletions package.json
Expand Up @@ -3,7 +3,7 @@
"description": "An Awesome [/osom/] Object Schema Modeling",
"homepage": "https://github.com/Kikobeats/osom",
"version": "1.1.0",
"main": "./index.js",
"main": "index.js",
"author": {
"name": "Kiko Beats",
"email": "josefrancisco.verdu@gmail.com",
Expand Down Expand Up @@ -34,6 +34,8 @@
"browserify": "latest",
"coffee-script": "latest",
"coffeeify": "latest",
"coveralls": "latest",
"nyc": "latest",
"docpress": "latest",
"git-dirty": "latest",
"git-update-ghpages": "latest",
Expand All @@ -55,7 +57,8 @@
"clean": "rm -rf node_modules",
"lint": "standard lib",
"pretest": "npm run lint",
"test": "mocha"
"test": "nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"license": "MIT"
}

0 comments on commit e34d711

Please sign in to comment.