Skip to content

Commit b0fef9a

Browse files
committed
#64 splitting test off to local-only tests (travis unpredictable)
1 parent fcdaf9b commit b0fef9a

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

grunt.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ module.exports = function(grunt) {
3333
}
3434
},
3535
qunit: {
36-
files: ['test/**/*.html', 'test/issues/**/test.html']
36+
local: ['test/notravis/**/*.html'],
37+
travis: ['test/issues/**/*.html', 'test/jqBootstrapValidation.html']
3738
},
3839
lint: {
3940
files: ['grunt.js', 'src/**/*.js', 'test/**/*.js']
@@ -75,6 +76,6 @@ module.exports = function(grunt) {
7576
grunt.registerTask('default', 'lint qunit clean concat min zip');
7677

7778
// Travis CI task.
78-
grunt.registerTask('travis', 'lint qunit');
79+
grunt.registerTask('travis', 'lint qunit:travis');
7980

8081
};

0 commit comments

Comments
 (0)