From a19f4f284816519afe011efdc7c9287f5767c223 Mon Sep 17 00:00:00 2001 From: Iskren Chernev Date: Thu, 23 Apr 2020 21:12:06 +0300 Subject: [PATCH] Do not run tests twice in travis --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 0225972a3..5d403ef4c 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -202,7 +202,7 @@ module.exports = function (grunt) { grunt.registerTask('test:meteor', ['exec:meteor-init', 'exec:meteor-test', 'exec:meteor-cleanup']); // travis build task - grunt.registerTask('build:travis', ['default', 'exec:coveralls']); + grunt.registerTask('build:travis', ['lint', 'exec:coveralls']); grunt.registerTask('meteor-publish', ['exec:meteor-init', 'exec:meteor-publish', 'exec:meteor-cleanup']); // Task to be run when releasing a new version -- 2.47.2