Skip to content

Commit

Permalink
Fix CircleCi
Browse files Browse the repository at this point in the history
Latest commit makes it run code coverage after every test suite and send code coverage even from other branches. We should not only always send from master but also ignore forks as well since for now - they are always going to fail.

See: https://circleci.com/gh/rnpm/rnpm/175
  • Loading branch information
grabbou committed Feb 29, 2016
1 parent 2a6f59f commit ea6441a
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@ machine:
node:
version: 4.2.1

test:
dependencies:
pre:
- npm install codeclimate-test-reporter@0.1
post:
- codeclimate-test-reporter < coverage/lcov.info


deployment:
coverage:
branch: master
owner: rnpm
commands:
- codeclimate-test-reporter < coverage/lcov.info

notify:
webhooks:
- url: https://webhooks.gitter.im/e/bf9cb7240681c7263e6b

0 comments on commit ea6441a

Please sign in to comment.