1
0
mirror of synced 2024-11-21 20:46:07 +03:00

Pull requests are marked as 'false', not missing

This commit is contained in:
Kevin Brown 2015-02-14 19:08:23 -05:00
parent e8a12133f8
commit 2988cc2bee

View File

@ -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');
}