File tree Expand file tree Collapse file tree 4 files changed +21
-5
lines changed
Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 33 - " 0.10"
44 - " 0.12"
55sudo : false
6- script : " npm run-script test-travis "
6+ script : " npm run-script test-ci "
77after_script : " npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls"
Original file line number Diff line number Diff line change 44
55 [ ![ NPM Version] [ npm-image ]] [ npm-url ]
66 [ ![ NPM Downloads] [ downloads-image ]] [ downloads-url ]
7- [ ![ Build Status] [ travis-image ]] [ travis-url ]
7+ [ ![ Linux Build] [ travis-image ]] [ travis-url ]
8+ [ ![ Windows Build] [ appveyor-image ]] [ appveyor-url ]
89 [ ![ Test Coverage] [ coveralls-image ]] [ coveralls-url ]
910
1011``` js
@@ -125,8 +126,10 @@ The current lead maintainer is [Douglas Christopher Wilson](https://github.com/d
125126[ npm-url ] : https://npmjs.org/package/express
126127[ downloads-image ] : https://img.shields.io/npm/dm/express.svg
127128[ downloads-url ] : https://npmjs.org/package/express
128- [ travis-image ] : https://img.shields.io/travis/strongloop/express/master.svg
129+ [ travis-image ] : https://img.shields.io/travis/strongloop/express/master.svg?label=linux
129130[ travis-url ] : https://travis-ci.org/strongloop/express
131+ [ appveyor-image ] : https://img.shields.io/appveyor/ci/dougwilson/express/master.svg?label=windows
132+ [ appveyor-url ] : https://ci.appveyor.com/project/dougwilson/express
130133[ coveralls-image ] : https://img.shields.io/coveralls/strongloop/express/master.svg
131134[ coveralls-url ] : https://coveralls.io/r/strongloop/express?branch=master
132135[ gratipay-image-visionmedia ] : https://img.shields.io/gratipay/visionmedia.svg
Original file line number Diff line number Diff line change 1+ environment :
2+ matrix :
3+ - nodejs_version : " 0.10"
4+ - nodejs_version : " 0.12"
5+ install :
6+ - ps : Install-Product node $env:nodejs_version
7+ - npm install
8+ build : off
9+ test_script :
10+ - node --version
11+ - npm --version
12+ - npm run test-ci
13+ version : " {build}"
Original file line number Diff line number Diff line change 8383 ],
8484 "scripts" : {
8585 "test" : " mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/" ,
86+ "test-ci" : " istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/" ,
8687 "test-cov" : " istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/" ,
87- "test-tap" : " mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/" ,
88- "test-travis" : " istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/"
88+ "test-tap" : " mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
8989 }
9090}
You can’t perform that action at this time.
0 commit comments