소스 검색

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 년 전
부모
커밋
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' );