Skip to content

Commit

Permalink
fix: temporarily disable coveralls (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbadan committed Feb 18, 2019
1 parent a541dd9 commit 2c9da2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -9,7 +9,7 @@ script:
jobs:
include:
- stage: Lint and Test
script: npm run lint && npm run test:coveralls && npm run size
script: npm run lint && npm run test:coverage && npm run size && npm run test:coveralls
- stage: Pre-release
if: branch = master
before_deploy:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -37,7 +37,7 @@
"std-version": "standard-version -m \"chore(release): version %s build ${TRAVIS_BUILD_NUMBER} [ci skip]\"",
"test:coverage": "jest --coverage",
"test:coverage:watch": "jest --coverage --watch",
"test:coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || echo -e \"Coveralls failed.\"",
"test:dev": "jest",
"test:watch": "jest --watch",
"test": "npm run test:watch",
Expand Down

0 comments on commit 2c9da2c

Please sign in to comment.