From: Chris Rebert Date: Wed, 8 Jan 2014 03:34:49 +0000 (-0800) Subject: enable CSSLint in test suite; fixes #12094 X-Git-Tag: v3.1.0~115^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a712abd06e76ff353c564f03125eaad8af4b2e74;p=thirdparty%2Fbootstrap.git enable CSSLint in test suite; fixes #12094 --- diff --git a/Gruntfile.js b/Gruntfile.js index b6a2846646..bd67ce84d5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -300,7 +300,7 @@ module.exports = function (grunt) { var testSubtasks = []; // Skip core tests if running a different subset of the test suite if (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'core') { - testSubtasks = testSubtasks.concat(['dist-css', 'jshint', 'jscs', 'qunit']); + testSubtasks = testSubtasks.concat(['dist-css', 'csslint', 'jshint', 'jscs', 'qunit']); } // Skip HTML validation if running a different subset of the test suite if (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'validate-html') {