Skip to content

Commit a6264c6

Browse files
committed
Try parallel Coveralls
1 parent ce62e80 commit a6264c6

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ os:
77
- windows
88
script: npm run ci-test
99
cache: npm
10+
env:
11+
global: COVERALLS_PARALLEL=true
1012
notifications:
1113
email: false
14+
webhooks: https://coveralls.io/webhook

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"scripts": {
1111
"test": "gulp test",
12-
"ci-test": "nyc --check-coverage --statements 100 --lines 100 --functions 100 --branches 100 npm test && coveralls <coverage/lcov.info",
12+
"ci-test": "nyc npm test && coveralls <coverage/lcov.info",
1313
"prepublishOnly": "npm test",
1414
"release": "release-it"
1515
},

src/level.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,8 @@ const getLevel = function({ opts, info }) {
2020
return defaultGetLevel(info)
2121
}
2222

23-
// istanbul ignore next
2423
const supportsUnicode = platform !== 'win32' || TERM === 'xterm-256color'
2524
// Each level is printed in a different way
26-
// istanbul ignore next
2725
const LEVELS = {
2826
debug: {
2927
COLOR: 'blue',

0 commit comments

Comments
 (0)