From b0fef9a8692cb52497d0f4f7ec7d2cf694c80459 Mon Sep 17 00:00:00 2001 From: David Godfrey Date: Tue, 7 May 2013 17:08:26 +0100 Subject: [PATCH] #64 splitting test off to local-only tests (travis unpredictable) --- grunt.js | 5 +++-- test/{issues => notravis}/67/67.html | 0 test/{issues => notravis}/67/test.js | 0 3 files changed, 3 insertions(+), 2 deletions(-) rename test/{issues => notravis}/67/67.html (100%) rename test/{issues => notravis}/67/test.js (100%) diff --git a/grunt.js b/grunt.js index 8af5509..16103af 100644 --- a/grunt.js +++ b/grunt.js @@ -33,7 +33,8 @@ module.exports = function(grunt) { } }, qunit: { - files: ['test/**/*.html', 'test/issues/**/test.html'] + local: ['test/notravis/**/*.html'], + travis: ['test/issues/**/*.html', 'test/jqBootstrapValidation.html'] }, lint: { files: ['grunt.js', 'src/**/*.js', 'test/**/*.js'] @@ -75,6 +76,6 @@ module.exports = function(grunt) { grunt.registerTask('default', 'lint qunit clean concat min zip'); // Travis CI task. - grunt.registerTask('travis', 'lint qunit'); + grunt.registerTask('travis', 'lint qunit:travis'); }; diff --git a/test/issues/67/67.html b/test/notravis/67/67.html similarity index 100% rename from test/issues/67/67.html rename to test/notravis/67/67.html diff --git a/test/issues/67/test.js b/test/notravis/67/test.js similarity index 100% rename from test/issues/67/test.js rename to test/notravis/67/test.js