Skip to content

Commit

Permalink
drop codecov by coveralls for tests coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno12mota committed May 27, 2016
1 parent ceaeeea commit e7369c4
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 18 deletions.
1 change: 1 addition & 0 deletions .coveralls.yml
@@ -0,0 +1 @@
repo_token: ZaVEVNfaCUibNQ64TS9KLZ4VYIxxJiUM8
1 change: 1 addition & 0 deletions .npmignore
@@ -1,3 +1,4 @@
lib/
test/
docs/
.nyc_output
3 changes: 1 addition & 2 deletions .travis.yml
Expand Up @@ -4,5 +4,4 @@ node_js:
script:
- npm run lint
- npm test
after_success:
- bash <(curl -s https://codecov.io/bash)
after_success: npm run coverage
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
![Relate logo](http://relax.github.io/relate/images/logo_image.png)

[![build status](https://img.shields.io/travis/relax/relate/master.svg?style=flat-square)](https://travis-ci.org/relax/relate) [![npm version](https://img.shields.io/npm/v/relate-js.svg?style=flat-square)](https://www.npmjs.com/package/relate-js) [![code coverage](https://img.shields.io/codecov/c/github/relax/relate.svg?style=flat-square)](https://www.npmjs.com/package/relate-js)
[![build status](https://img.shields.io/travis/relax/relate/master.svg?style=flat-square)](https://travis-ci.org/relax/relate) [![npm version](https://img.shields.io/npm/v/relate-js.svg?style=flat-square)](https://www.npmjs.com/package/relate-js) [![Coverage Status](https://coveralls.io/repos/github/relax/relate/badge.svg?branch=master)](https://coveralls.io/github/relax/relate?branch=master?style=flat-square)

Relate is a library built to use together with Redux and GraphQL. You can think of it as an alternative to [Relay](https://github.com/facebook/relay) for Redux. It extends the [React Redux's](https://github.com/reactjs/react-redux) `connect` where you can additionally specify your container's data needs. Relate will resolve each container data needs automatically and provides it to each one the data they requested.

Expand Down
13 changes: 0 additions & 13 deletions codecov.yml

This file was deleted.

3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -8,7 +8,7 @@
"build": "npm run clean && webpack",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-register --recursive",
"coverage": "nyc --reporter=text-lcov > coverage.lcov npm test && codecov",
"coverage": "nyc --reporter=text-lcov npm run test | coveralls",
"lint": "eslint lib/** test/**"
},
"repository": {
Expand Down Expand Up @@ -49,7 +49,6 @@
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.6.0",
"codecov": "^1.0.1",
"eslint": "2.4.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.1.0",
Expand Down

0 comments on commit e7369c4

Please sign in to comment.