Skip to content

Commit fcc5a0f

Browse files
authored
Merge pull request #77 from lgeiger/codecov-bash
Add support for Node 7
2 parents b5d4353 + f6572b6 commit fcc5a0f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ script: if [[ -z "$ELECTRON" ]]; then travis_retry npm run coverage; else travis
4242

4343
after_success:
4444
- bash ./scripts/publish_docs.sh
45+
- 'if [[ $DEPLOY == true && $TRAVIS_OS_NAME == linux ]]; then bash <(curl -s https://codecov.io/bash); fi'
4546

4647
deploy:
4748
provider: script

binding.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
'install_zmq': '<!(./build_libzmq.sh 2>&1 > zmq-build.log)',
2222
'xcode_settings': {
2323
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
24-
'MACOSX_DEPLOYMENT_TARGET': '10.6',
24+
'MACOSX_DEPLOYMENT_TARGET': '10.7',
2525
},
2626
'libraries': [ '<(PRODUCT_DIR)/../../zmq/lib/libzmq.a' ],
2727
'include_dirs': [ '<(PRODUCT_DIR)/../../zmq/include' ],

codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ coverage:
44
status:
55
patch:
66
default:
7-
target: auto
7+
target: '30'
88
project:
99
default:
1010
target: auto

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"prebuild": "^4.2.2"
1414
},
1515
"devDependencies": {
16-
"codecov": "^1.0.1",
1716
"electron-mocha": "^3.1.1",
1817
"jsdoc": "^3.4.2",
1918
"mocha": "^3.1.0",
@@ -30,7 +29,7 @@
3029
"test": "mocha --expose-gc --slow 300",
3130
"test:electron": "electron-mocha --slow 300",
3231
"precoverage": "nyc npm run test",
33-
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
32+
"coverage": "nyc report --reporter=text-lcov > coverage/lcov.info"
3433
},
3534
"keywords": [
3635
"zeromq",

0 commit comments

Comments
 (0)