No global codecov install, less verbose CI output

This commit is contained in:
Robert Schäfer 2019-07-14 00:48:05 +02:00
parent 4c91d8fbc5
commit 5bde0ab036
3 changed files with 2 additions and 5 deletions

View File

@ -11,7 +11,6 @@ addons:
before_install: before_install:
- yarn global add wait-on - yarn global add wait-on
# Install Codecov # Install Codecov
- yarn global add codecov
- yarn install - yarn install
- cp cypress.env.template.json cypress.env.json - cp cypress.env.template.json cypress.env.json
@ -40,7 +39,7 @@ script:
# Fullstack # Fullstack
- yarn run cypress:run - yarn run cypress:run
# Coverage # Coverage
- codecov - yarn run codecov
after_success: after_success:
- wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh - wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh

View File

@ -34,7 +34,6 @@
"!**/src/**/?(*.)+(spec|test).js?(x)" "!**/src/**/?(*.)+(spec|test).js?(x)"
], ],
"coverageReporters": [ "coverageReporters": [
"text",
"lcov" "lcov"
], ],
"testMatch": [ "testMatch": [

View File

@ -29,7 +29,6 @@
"!**/?(*.)+(spec|test).js?(x)" "!**/?(*.)+(spec|test).js?(x)"
], ],
"coverageReporters": [ "coverageReporters": [
"text",
"lcov" "lcov"
], ],
"transform": { "transform": {
@ -111,4 +110,4 @@
"vue-jest": "~3.0.4", "vue-jest": "~3.0.4",
"vue-svg-loader": "~0.12.0" "vue-svg-loader": "~0.12.0"
} }
} }