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 3
3
- " 0.10"
4
4
- " 0.12"
5
5
sudo : false
6
- script : " npm run-script test-travis "
6
+ script : " npm run-script test-ci "
7
7
after_script : " npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls"
Original file line number Diff line number Diff line change 4
4
5
5
[ ![ NPM Version] [ npm-image ]] [ npm-url ]
6
6
[ ![ 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 ]
8
9
[ ![ Test Coverage] [ coveralls-image ]] [ coveralls-url ]
9
10
10
11
``` js
@@ -125,8 +126,10 @@ The current lead maintainer is [Douglas Christopher Wilson](https://github.com/d
125
126
[ npm-url ] : https://npmjs.org/package/express
126
127
[ downloads-image ] : https://img.shields.io/npm/dm/express.svg
127
128
[ 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
129
130
[ 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
130
133
[ coveralls-image ] : https://img.shields.io/coveralls/strongloop/express/master.svg
131
134
[ coveralls-url ] : https://coveralls.io/r/strongloop/express?branch=master
132
135
[ 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 83
83
],
84
84
"scripts" : {
85
85
"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/" ,
86
87
"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/"
89
89
}
90
90
}
You can’t perform that action at this time.
0 commit comments