Skip to content

Commit

Permalink
#64 splitting test off to local-only tests (travis unpredictable)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReactiveRaven committed May 7, 2013
1 parent fcdaf9b commit b0fef9a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions grunt.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down Expand Up @@ -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');

};
File renamed without changes.
File renamed without changes.

0 comments on commit b0fef9a

Please sign in to comment.