Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed karma-coveralls #320

Merged
merged 5 commits into from Jul 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -9,9 +9,12 @@ node_js:
- '14'
cache:
- node_modules
before_install:
- export COVERALLS_SERVICE_JOB_ID=$( TRAVIS_JOB_ID )
install:
- npm install
script:
- npm run lint
- npm run build
- npm run coverage
- if [[ $TRAVIS_TEST_RESULT -eq 0 ]]; then cat coverage/*/lcov.info | ./node_modules/.bin/coveralls; fi
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -29,6 +29,7 @@
"@ckeditor/ckeditor5-watchdog": "^34.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"coveralls": "^3.1.1",
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
Expand All @@ -41,18 +42,17 @@
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-coveralls": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^5.0.0",
"lint-staged": "^10.2.11",
"minimist": "^1.2.5",
"mocha": "^9.2.2",
"mocha": "^10.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sinon": "^9.0.2",
"sinon": "^14.0.0",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2"
Expand Down
4 changes: 0 additions & 4 deletions scripts/utils/getkarmaconfig.js
Expand Up @@ -97,10 +97,6 @@ module.exports = function getKarmaConfig() {
if ( options.coverage ) {
karmaConfig.reporters.push( 'coverage' );

if ( process.env.TRAVIS ) {
karmaConfig.reporters.push( 'coveralls' );
}

karmaConfig.coverageReporter = {
reporters: [
// Prints a table after tests result.
Expand Down