File tree 3 files changed +683
-591
lines changed
3 files changed +683
-591
lines changed Original file line number Diff line number Diff line change @@ -54,16 +54,6 @@ module.exports = function(grunt) {
54
54
dest : 'dist/video-js-' + version . full + '.zip'
55
55
}
56
56
} ,
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
- } ,
67
57
concurrent : {
68
58
options : {
69
59
logConcurrentOutput : true
@@ -207,7 +197,6 @@ module.exports = function(grunt) {
207
197
// Default task - build and test
208
198
grunt . registerTask ( 'default' , [ 'test' ] ) ;
209
199
210
- // The test script includes coveralls only when the TRAVIS env var is set.
211
200
grunt . registerTask ( 'test' , function ( ) {
212
201
const tasks = [
213
202
'build' ,
@@ -223,8 +212,6 @@ module.exports = function(grunt) {
223
212
grunt . log . write ( 'Not running any tests because only docs were changed' ) ;
224
213
return ;
225
214
}
226
-
227
- tasks . concat ( process . env . TRAVIS && 'coveralls' ) . filter ( Boolean ) ;
228
215
}
229
216
230
217
grunt . task . run ( tasks ) ;
You can’t perform that action at this time.
0 commit comments