From: Chris Rebert Date: Wed, 19 Nov 2014 23:43:23 +0000 (-0800) Subject: disable core tests for Savage builds X-Git-Tag: v3.3.2~46^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db95e0bd01739fb68c9b89979c7a214ffdde587e;p=thirdparty%2Fbootstrap.git disable core tests for Savage builds --- diff --git a/Gruntfile.js b/Gruntfile.js index 76fbbcbafa..3c5e59273a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -394,7 +394,9 @@ module.exports = function (grunt) { // Test task. var testSubtasks = []; // Skip core tests if running a different subset of the test suite - if (runSubset('core')) { + if (runSubset('core') && + // Skip core tests if this is a Savage build + process.env.TRAVIS_REPO_SLUG !== 'twbs-savage/bootstrap') { testSubtasks = testSubtasks.concat(['dist-css', 'dist-js', 'csslint:dist', 'test-js', 'docs']); } // Skip HTML validation if running a different subset of the test suite