Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-11-20 02:43:23 +0300
committerChris Rebert <code@rebertia.com>2014-11-20 03:00:46 +0300
commitdb95e0bd01739fb68c9b89979c7a214ffdde587e (patch)
tree384cce77bd41d4dfdb24ae57c67f1420ad48ec40 /Gruntfile.js
parentaaffe4b49860ed7f8084b6fd967dd0aa0099c9a3 (diff)
disable core tests for Savage builds
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js4
1 files changed, 3 insertions, 1 deletions
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