From 2988cc2beef74f702cf6824f23b390ae2f2af01c Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Sat, 14 Feb 2015 19:08:23 -0500 Subject: [PATCH] Pull requests are marked as 'false', not missing --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 4ba85017..43bd2c8a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -323,7 +323,7 @@ module.exports = function (grunt) { ciTasks.push('connect:tests'); // Can't run Sauce Labs tests in pull requests - if (process.env.TRAVIS_PULL_REQUEST == null) { + if (process.env.TRAVIS_PULL_REQUEST == 'false') { ciTasks.push('saucelabs-qunit'); }