8
0
Просмотр исходного кода

Revert "Internal (ckeditor5): Use verbose output for coveralls CC upload."

Verbose mode doesn't provide any useful information (actually it prints nothing at all :D).

This reverts commit 380e64685bedb488cc1a819768ca898486a17b84.
Marek Lewandowski 5 лет назад
Родитель
Сommit
1560389a65
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      scripts/continuous-integration-script.js

+ 2 - 1
scripts/continuous-integration-script.js

@@ -91,7 +91,8 @@ for ( const fullPackageName of packages ) {
 }
 
 console.log( 'Uploading combined code coverage report…' );
-childProcess.execSync( 'npx coveralls -v < .out/combined_lcov.info' );
+childProcess.execSync( 'npx coveralls < .out/combined_lcov.info' );
+console.log( 'Done' );
 
 if ( Object.values( failedChecks ).some( checksSet => checksSet.size > 0 ) ) {
 	console.log( '\n---\n' );