File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,16 +54,6 @@ module.exports = function(grunt) {
5454 dest : 'dist/video-js-' + version . full + '.zip'
5555 }
5656 } ,
57- coveralls : {
58- options : {
59- // warn instead of failing when coveralls errors
60- // we've seen coveralls 503 relatively frequently
61- force : true
62- } ,
63- all : {
64- src : 'test/dist/coverage/lcov.info'
65- }
66- } ,
6757 concurrent : {
6858 options : {
6959 logConcurrentOutput : true
@@ -207,7 +197,6 @@ module.exports = function(grunt) {
207197 // Default task - build and test
208198 grunt . registerTask ( 'default' , [ 'test' ] ) ;
209199
210- // The test script includes coveralls only when the TRAVIS env var is set.
211200 grunt . registerTask ( 'test' , function ( ) {
212201 const tasks = [
213202 'build' ,
@@ -223,8 +212,6 @@ module.exports = function(grunt) {
223212 grunt . log . write ( 'Not running any tests because only docs were changed' ) ;
224213 return ;
225214 }
226-
227- tasks . concat ( process . env . TRAVIS && 'coveralls' ) . filter ( Boolean ) ;
228215 }
229216
230217 grunt . task . run ( tasks ) ;
You can’t perform that action at this time.
0 commit comments