File tree Expand file tree Collapse file tree 4 files changed +18
-3
lines changed Expand file tree Collapse file tree 4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change
1
+ instrumentation :
2
+ excludes :
3
+ - soljson.js
Original file line number Diff line number Diff line change @@ -8,4 +8,11 @@ branches:
8
8
# Pull request automation is not constrained to this set of branches.
9
9
only :
10
10
- master
11
- script : npm test
11
+ matrix :
12
+ fast_finish : true
13
+ include :
14
+ - os : linux
15
+ env : CXX=g++-4.8 TEST_SUITE=test
16
+ - os : linux
17
+ env : CXX=g++-4.8 TEST_SUITE=coveralls
18
+ script : npm run $TEST_SUITE
Original file line number Diff line number Diff line change 1
- [ ![ Build Status] ( https://travis-ci.org/ethereum/solc-js.svg?branch=master )] ( https://travis-ci.org/ethereum/solc-js )
1
+ [ ![ Build Status] ( https://img.shields.io/travis/ethereum/solc-js.svg?branch=master&style=flat-square )] ( https://travis-ci.org/ethereum/solc-js )
2
+ [ ![ Coverage Status] ( https://img.shields.io/coveralls/ethereum/solc-js.svg?style=flat-square )] ( https://coveralls.io/r/ethereum/solc-js )
2
3
3
4
# solc-js
4
5
JavaScript bindings for the [ Solidity compiler] ( https://github.com/ethereum/solidity ) .
Original file line number Diff line number Diff line change 10
10
"lint" : " semistandard" ,
11
11
"prepublish" : " ./downloadCurrentVersion.js && ./verifyVersion.js" ,
12
12
"pretest" : " npm run lint" ,
13
- "test" : " tape ./test/index.js"
13
+ "test" : " tape ./test/index.js" ,
14
+ "coverage" : " istanbul cover node_modules/tape/bin/tape ./test/index.js" ,
15
+ "coveralls" : " npm run coverage && coveralls <coverage/lcov.info"
14
16
},
15
17
"repository" : {
16
18
"type" : " git" ,
44
46
"yargs" : " ^4.7.1"
45
47
},
46
48
"devDependencies" : {
49
+ "coveralls" : " ^3.0.0" ,
47
50
"ethereumjs-util" : " ^5.1.4" ,
51
+ "istanbul" : " ^0.4.5" ,
48
52
"semistandard" : " ^11.0.0" ,
49
53
"tape" : " ^4.5.1" ,
50
54
"tape-spawn" : " ^1.4.2"
You can’t perform that action at this time.
0 commit comments