diff --git a/package.json b/package.json index f7777fb4e..070384ef5 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "test:unit": "jest --collectCoverage", "test:unit:ci": "lerna run test:unit:ci --parallel", "test:e2e": "", - "test:e2e:ci": "lerna run lerna:test:e2e --parallel", + "test:e2e:ci": "lerna run lerna:test:e2e --parallel && codecov", "new-version": "lerna version --conventional-commits --yes", "build:pwa:ci": "" }, diff --git a/platform/core/package.json b/platform/core/package.json index ae4257210..eeb966cf0 100644 --- a/platform/core/package.json +++ b/platform/core/package.json @@ -16,7 +16,7 @@ }, "scripts": { "test:unit": "jest --watch", - "test:unit:ci": "jest --ci --runInBand --collectCoverage && codecov --flags=core", + "test:unit:ci": "jest --ci --runInBand --collectCoverage", "build": "rollup -c", "lerna:build": "webpack --config config/webpack.prod.js -w -d", "dev": "jest --watch", diff --git a/platform/ui/package.json b/platform/ui/package.json index d252a0183..1391bece4 100644 --- a/platform/ui/package.json +++ b/platform/ui/package.json @@ -16,7 +16,7 @@ ], "scripts": { "test:unit": "jest --watch", - "test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests && codecov --flags=ui", + "test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests", "dev": "docz dev", "lerna:build": "webpack --config config/webpack.prod.js -w -d", "build": "rollup -c", diff --git a/platform/viewer/package.json b/platform/viewer/package.json index 1c065f75b..a936200d1 100644 --- a/platform/viewer/package.json +++ b/platform/viewer/package.json @@ -15,7 +15,7 @@ "scripts": { "lerna:start": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.dev.js --mode development -w -d", "test:unit": "jest --watch", - "test:unit:ci": "jest --ci --runInBand --collectCoverage && codecov --flags=viewer", + "test:unit:ci": "jest --ci --runInBand --collectCoverage", "dev": "yarn run preBuild && react-scripts start", "dev:debug": "react-scripts start", "build:package": "yarn run preBuild && node --max-old-space-size=4096 node_modules/rollup/bin/rollup -c",