Skip to content

Commit 2c9da2c

Browse files
authored
fix: temporarily disable coveralls (#417)
1 parent a541dd9 commit 2c9da2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ script:
99
jobs:
1010
include:
1111
- stage: Lint and Test
12-
script: npm run lint && npm run test:coveralls && npm run size
12+
script: npm run lint && npm run test:coverage && npm run size && npm run test:coveralls
1313
- stage: Pre-release
1414
if: branch = master
1515
before_deploy:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"std-version": "standard-version -m \"chore(release): version %s build ${TRAVIS_BUILD_NUMBER} [ci skip]\"",
3838
"test:coverage": "jest --coverage",
3939
"test:coverage:watch": "jest --coverage --watch",
40-
"test:coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
40+
"test:coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || echo -e \"Coveralls failed.\"",
4141
"test:dev": "jest",
4242
"test:watch": "jest --watch",
4343
"test": "npm run test:watch",

0 commit comments

Comments
 (0)