We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcdaf9b commit b0fef9aCopy full SHA for b0fef9a
3 files changed
grunt.js
@@ -33,7 +33,8 @@ module.exports = function(grunt) {
33
}
34
},
35
qunit: {
36
- files: ['test/**/*.html', 'test/issues/**/test.html']
+ local: ['test/notravis/**/*.html'],
37
+ travis: ['test/issues/**/*.html', 'test/jqBootstrapValidation.html']
38
39
lint: {
40
files: ['grunt.js', 'src/**/*.js', 'test/**/*.js']
@@ -75,6 +76,6 @@ module.exports = function(grunt) {
75
76
grunt.registerTask('default', 'lint qunit clean concat min zip');
77
78
// Travis CI task.
- grunt.registerTask('travis', 'lint qunit');
79
+ grunt.registerTask('travis', 'lint qunit:travis');
80
81
};
test/issues/67/67.html test/notravis/67/67.htmltest/issues/67/67.html renamed to test/notravis/67/67.html
test/issues/67/test.js test/notravis/67/test.jstest/issues/67/test.js renamed to test/notravis/67/test.js
0 commit comments